Skip to content

Commit a1a080c

Browse files
committed
update
1 parent cb2d6f6 commit a1a080c

5 files changed

Lines changed: 23 additions & 8 deletions

File tree

Push.bat

Lines changed: 0 additions & 8 deletions
This file was deleted.

Script-install.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@echo off
2+
pip install -r requirements.txt

Script-push.bat

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
@echo off
2+
git pull
3+
git add .
4+
git commit -m update
5+
git push
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
@echo off
2+
:: 运行 Streamlit
23
streamlit run app.py
4+
pause

Script.bat

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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

0 commit comments

Comments
 (0)