Spaces:
Sleeping
Sleeping
readme.md
Browse files- README.md +8 -11
- deploy_hf.sh +4 -0
README.md
CHANGED
|
@@ -28,6 +28,14 @@ Try the demo here:
|
|
| 28 |
* Space URL: https://huggingface.co/spaces/jrosell/ambhtmx.card3d
|
| 29 |
|
| 30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
### Runing the example in Docker
|
| 32 |
|
| 33 |
All in one:
|
|
@@ -67,14 +75,3 @@ docker build -f Dockerfile --no-cache --progress=plain -t ambhtmx-card3d-image
|
|
| 67 |
```
|
| 68 |
|
| 69 |
Check the [known issues](https://github.com/jrosell/ambhtmx/issues), and if you have another issue? Please, [let me know](https://github.com/jrosell/ambhtmx/issues).
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
git init
|
| 73 |
-
git add -A
|
| 74 |
-
git branch -M main
|
| 75 |
-
git remote add origin [email protected]:jrosell/ambhtx.card3d.git
|
| 76 |
-
git remote add hg [email protected]:spaces/jrosell/ambhtmx.card3d
|
| 77 |
-
git remote -v
|
| 78 |
-
git remote set-url --add --push origin [email protected]:jrosell/ambhtmx.card3d.git
|
| 79 |
-
git remote set-url --add --push origin [email protected]:spaces/jrosell/ambhtmx.card3d
|
| 80 |
-
git push -u origin main
|
|
|
|
| 28 |
* Space URL: https://huggingface.co/spaces/jrosell/ambhtmx.card3d
|
| 29 |
|
| 30 |
|
| 31 |
+
If you have this repo with git enabled with hf remote, you can run:
|
| 32 |
+
|
| 33 |
+
```
|
| 34 |
+
bash deploy_hf.sh
|
| 35 |
+
```
|
| 36 |
+
|
| 37 |
+
|
| 38 |
+
|
| 39 |
### Runing the example in Docker
|
| 40 |
|
| 41 |
All in one:
|
|
|
|
| 75 |
```
|
| 76 |
|
| 77 |
Check the [known issues](https://github.com/jrosell/ambhtmx/issues), and if you have another issue? Please, [let me know](https://github.com/jrosell/ambhtmx/issues).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
deploy_hf.sh
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
echo date > last_depoy.txt
|
| 2 |
+
git add last_depoy.txt
|
| 3 |
+
git commit -m "deploy"
|
| 4 |
+
git push hf main --force
|