File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ @ echo off
2+ pip install -r requirements.txt
Original file line number Diff line number Diff line change 1+ @ echo off
2+ git pull
3+ git add .
4+ git commit -m update
5+ git push
Original file line number Diff line number Diff line change 11@ echo off
2+ :: 运行 Streamlit
23streamlit run app.py
4+ pause
Original file line number Diff line number Diff line change 1+ @ echo off
2+ echo @echo off > Script-install.bat
3+ echo pip install -r requirements.txt >> Script-install.bat
4+
5+ echo @echo off > Script-run.bat
6+ echo :: 运行 Streamlit >> Script-run.bat
7+ echo streamlit run app.py >> Script-run.bat
8+ echo pause >> Script-run.bat
9+
10+ echo @echo off > Script-push.bat
11+ echo git pull >> Script-push.bat
12+ echo git add . >> Script-push.bat
13+ echo git commit -m update >> Script-push.bat
14+ echo git push >> Script-push.bat
You can’t perform that action at this time.
0 commit comments