Dooratre commited on
Commit
38c572b
·
verified ·
1 Parent(s): 7f40bd6

Upload setup.sh

Browse files
Files changed (1) hide show
  1. setup.sh +9 -0
setup.sh ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ echo "Downloading NLTK data"
2
+ python -m nltk.downloader punkt
3
+ python -m nltk.downloader wordnet
4
+
5
+ # Install gunicorn
6
+ pip install gunicorn
7
+
8
+ # Start the Flask application using gunicorn
9
+ gunicorn -b 0.0.0.0:$PORT app:app