Spaces:
Running
Running
Eric Hierholzer commited on
Commit ·
5de445a
1
Parent(s): fa2d998
updates
Browse files
README.md
CHANGED
|
@@ -129,4 +129,12 @@ docker build -t my-recommend-app .
|
|
| 129 |
docker run -p 7860:7860 my-recommend-app
|
| 130 |
```
|
| 131 |
|
| 132 |
-
access app at http://0.0.0.0:7860
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 129 |
docker run -p 7860:7860 my-recommend-app
|
| 130 |
```
|
| 131 |
|
| 132 |
+
access app at http://0.0.0.0:7860
|
| 133 |
+
|
| 134 |
+
#### Run with gunicorn
|
| 135 |
+
```sh
|
| 136 |
+
gunicorn -w 2 -b 0.0.0.0:7860 recommend_app:app
|
| 137 |
+
```
|
| 138 |
+
|
| 139 |
+
#### Just view online (easiest)
|
| 140 |
+
https://huggingface.co/spaces/erichier/finalcapstone
|