salix/dev.cmd

31 lines
701 B
Batchfile
Raw Normal View History

@echo off
set currentDir=%~dp0
set nginxPrefix=%currentDir%\services\nginx
set nginxConf=%nginxPrefix%\conf-dev.conf
if "%1"=="" goto caseStart
if "%1"=="start" goto caseStart
if "%1"=="stop" goto caseStop
goto caseUsage
2016-11-21 07:35:05 +00:00
:caseStart
call "%0" stop
2016-11-29 15:55:10 +00:00
echo "################################ Starting services"
call forever start forever.json
call forever list
2016-11-24 09:56:22 +00:00
call start /b nginx -c "%nginxConf%" -p "%nginxPrefix%"
cd @salix
gulp
goto caseExit
2016-11-21 07:35:05 +00:00
:caseStop
echo "################################ Stoping services"
2016-11-24 09:56:22 +00:00
forever stopall
nginx -c "%nginxConf%" -p "%nginxPrefix%" -s stop
goto caseExit
2016-11-21 07:35:05 +00:00
:caseUsage
echo "Usage: %0 [start|stop]"
2016-11-21 07:35:05 +00:00
:caseExit