Andrey commited on
Commit
f0798d9
1 Parent(s): c7126bf

* Upload images and bboxes to s3. Refactor.

* Remove comment.

* Add boto3 to requirements.txt

* Try to deploy on Heroku.

Files changed (2) hide show
  1. Procfile +1 -0
  2. setup.sh +8 -0
Procfile ADDED
@@ -0,0 +1 @@
 
 
1
+ web: sh setup.sh && streamlit run app.py
setup.sh ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ mkdir -p ~/.streamlit/
2
+ echo "\
3
+ [server]\n\
4
+ headless = true\n\
5
+ port = $PORT\n\
6
+ enableCORS = false\n\
7
+ \n\
8
+ " > ~/.streamlit/config.toml