added starter scripts

This commit is contained in:
troido 2017-10-30 12:19:16 +01:00
parent 4c6f730cad
commit 9e3a2bf939
3 changed files with 9 additions and 0 deletions

3
hostfarms Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
cd "`dirname "$0"`"
python3 -m asciifarm.server $@ >stdout.log 2>stderr.log &

3
playgame Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
cd "`dirname "$0"`"
python3 -m asciifarm.client $@

3
startserver Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
cd "`dirname "$0"`"
./hostfarms $@ >stdout.log 2>stderr.log &