Compare commits

...

2 commits

4 changed files with 13 additions and 0 deletions

4
.gitignore vendored Normal file
View file

@ -0,0 +1,4 @@
venv/
streamlit.log
__pycache__/
*.pyc

1
killservice.sh Executable file
View file

@ -0,0 +1 @@
sudo pkill -f "streamlit run main.py"

7
runscript.sh Executable file
View file

@ -0,0 +1,7 @@
#!/bin/bash
cd "$(dirname "$0")"
source venv/bin/activate
streamlit run main.py --server.port 8503 --server.address 0.0.0.0

View file

@ -0,0 +1 @@
nohup ./runscript.sh > streamlit.log 2>&1 &