Compare commits
2 commits
dca4ab683a
...
889a9c1a7b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
889a9c1a7b | ||
|
|
fb632f0646 |
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
venv/
|
||||
streamlit.log
|
||||
__pycache__/
|
||||
*.pyc
|
||||
1
killservice.sh
Executable file
1
killservice.sh
Executable file
|
|
@ -0,0 +1 @@
|
|||
sudo pkill -f "streamlit run main.py"
|
||||
7
runscript.sh
Executable file
7
runscript.sh
Executable 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
|
||||
1
startStremlitWebCameraAppInBAckgroud.sh
Executable file
1
startStremlitWebCameraAppInBAckgroud.sh
Executable file
|
|
@ -0,0 +1 @@
|
|||
nohup ./runscript.sh > streamlit.log 2>&1 &
|
||||
Loading…
Reference in a new issue