This commit is contained in:
aozhiwei 2019-01-29 15:07:42 +08:00
parent 0ae0964288
commit 5a808ff4bb
3 changed files with 9 additions and 0 deletions

8
boundle.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
tag_name=`git status |grep '# On branch '|sed 's/# On branch //g'`
dir_name=`basename $PWD`
package_name=${dir_name}.tar.gz
tar --exclude=*.git -chzf target/${package_name} bin config reload.sh restart.sh

0
reload.sh Normal file
View File

1
restart.sh Normal file
View File

@ -0,0 +1 @@
#nohup python3 bin/app.py >> bin/app.out 2>&1 &