sentiment_analysis / supervisor.conf
hatimanees's picture
Create supervisor.conf
3d8399f verified
raw
history blame contribute delete
386 Bytes
[supervisord]
nodaemon=true
[program:flask]
command=python run.py
autostart=true
autorestart=true
stderr_logfile=/var/log/flask.err.log
stdout_logfile=/var/log/flask.out.log
[program:streamlit]
command=streamlit run app.py --server.port=8501 --server.enableCORS=false
autostart=true
autorestart=true
stderr_logfile=/var/log/streamlit.err.log
stdout_logfile=/var/log/streamlit.out.log