Spaces:
Sleeping
Sleeping
Alejadro Sanchez-Giraldo
commited on
Commit
•
8451c82
1
Parent(s):
434260a
remove Heroku and update readme
Browse files- README.md +2 -1
- heroku.yml +0 -5
README.md
CHANGED
@@ -51,11 +51,12 @@ docker build -t morsisdivine/sentiment .
|
|
51 |
|
52 |
# Run your Docker container, mapping port 5001 of the container to port 5001 on your host
|
53 |
|
54 |
-
docker run -p 5001:5001 -e LAUNCHDARKLY_SDK_KEY
|
55 |
|
56 |
### UI
|
57 |
|
58 |
python3 -m venv myenv
|
59 |
source myenv/bin/activate
|
|
|
60 |
|
61 |
LAUNCHDARKLY_SDK_KEY=<LAUNCHDARKLY_SDK_KEY> streamlit run app.py
|
|
|
51 |
|
52 |
# Run your Docker container, mapping port 5001 of the container to port 5001 on your host
|
53 |
|
54 |
+
docker run -p 5001:5001 -e LAUNCHDARKLY_SDK_KEY=<LD_KEY> morsisdivine/sentiment
|
55 |
|
56 |
### UI
|
57 |
|
58 |
python3 -m venv myenv
|
59 |
source myenv/bin/activate
|
60 |
+
pip3 install -r requirements.txt
|
61 |
|
62 |
LAUNCHDARKLY_SDK_KEY=<LAUNCHDARKLY_SDK_KEY> streamlit run app.py
|
heroku.yml
DELETED
@@ -1,5 +0,0 @@
|
|
1 |
-
build:
|
2 |
-
docker:
|
3 |
-
web: dockerfile
|
4 |
-
run:
|
5 |
-
web: gunicorn -w 4 -b 0.0.0.0:5001 api:app
|
|
|
|
|
|
|
|
|
|
|
|