Skip to content

Latest commit

 

History

1 Commit

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Create env if not exists

python3 -m venv venv

Activate env

source venv/bin/activate

Install Packages

python3 -m pip install -r requirements.txt

To run App

streamlit run app.py

PRODUCTION

Run the application in background using nohup

Run application

nohup streamlit run app.py > output.log 2>&1 &

Check Logs

cat output.log

Check Instances running

This will show all the running processes

ps -ef | grep streamlit

Kill the process

kill -9 PID

For example
kill -9 1234

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages