1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00

Added makefile

This commit is contained in:
Zack Scholl 2016-02-08 12:34:06 -05:00
parent 414ad6f0ad
commit da82a40ffd
2 changed files with 6 additions and 2 deletions

View File

@ -4,7 +4,10 @@ PORT = 8001
CUR_DIR = $(shell bash -c 'pwd')
USERCUR = $(shell bash -c 'whoami')
all:
make:
go build
install:
rm -rf jinstall
mkdir jinstall
cp install/cowyo.nginx jinstall/cowyo.nginx
@ -15,6 +18,7 @@ all:
sed -i 's/EXT_ADDRESS/$(ADDRESS)/g' jinstall/cowyo.init
sed -i 's^CUR_DIR^$(CUR_DIR)^g' jinstall/cowyo.init
sed -i 's^USERCUR^$(USERCUR)^g' jinstall/cowyo.init
sed -i 's^PORT^$(PORT)^g' jinstall/cowyo.init
mv jinstall/cowyo.init /etc/init.d/
chmod +x /etc/init.d/cowyo.init
mv jinstall/cowyo.nginx /etc/nginx/sites-available/cowyo.nginx

View File

@ -6,7 +6,7 @@
dir="CUR_DIR"
user="USERCUR"
cmd="./cowyo EXT_ADDRESS"
cmd="./cowyo -p :PORT EXT_ADDRESS"
name="cowyo"
pid_file="/var/run/$name.pid"