mirror of https://github.com/midoks/mdserver-web
pull/109/head
parent
86fca0c6f5
commit
479206d83c
Binary file not shown.
@ -1,17 +1,20 @@ |
||||
{ |
||||
"sort": 7, |
||||
"ps": "流行SVN代码共享管理软件", |
||||
"shell": "php.sh", |
||||
"ps": "最流行的SVN代码共享管理软件", |
||||
"install": "install.sh", |
||||
"uninstall": "uninstall.sh", |
||||
"name": "csvn", |
||||
"title": "CSVN", |
||||
"default": false, |
||||
"versions": "5.2", |
||||
"versions":[ |
||||
{"status":false,"version":"1.0"} |
||||
], |
||||
"tip": "soft", |
||||
"checks": "/www/server/php/VERSION/bin/php", |
||||
"display": 1, |
||||
"author": "Zend", |
||||
"date": "2017-04-01", |
||||
"home": "https://www.php.net", |
||||
"home": "https://www.collab.net", |
||||
"type": "语言解释器", |
||||
"pid": "3" |
||||
} |
@ -0,0 +1,4 @@ |
||||
#!/bin/sh |
||||
|
||||
./stop.sh |
||||
./start.sh |
@ -1,5 +1,7 @@ |
||||
#!/bin/sh |
||||
|
||||
gunicorn -b 127.0.0.1:7200 app:app |
||||
gunicorn -b 127.0.0.1:7200 app:app & |
||||
|
||||
python task.py & |
||||
|
||||
#open "http://127.0.0.1:7200" |
@ -0,0 +1,7 @@ |
||||
#!/bin/sh |
||||
|
||||
ps -ef|grep app:app |grep -v grep|awk '{print $2}'|xargs kill -9 |
||||
|
||||
ps -ef|grep task.py |grep -v grep|awk '{print $2}'|xargs kill -9 |
||||
|
||||
#open "http://127.0.0.1:7200" |
Loading…
Reference in new issue