salix/dev.cmd

30 lines
836 B
Batchfile
Raw Normal View History

@echo off
2016-12-28 14:09:02 +00:00
set currentDir=%cd%
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"
2016-12-28 14:09:02 +00:00
if not exist "%nginxPrefix%\temp" (mkdir "%nginxPrefix%\temp")
start /I nginx -c "%nginxConf%" -p "%nginxPrefix%"
2017-01-18 17:07:16 +00:00
call forever --minUptime 1000 --spinSleepTime 1000 start forever.json
2017-01-17 10:10:12 +00:00
gulp --gulpfile @salix\gulpfile.js
goto caseExit
2016-11-21 07:35:05 +00:00
:caseStop
echo "################################ Stoping services"
2016-12-28 14:09:02 +00:00
if exist "%nginxPrefix%\temp\nginx.pid" (nginx -c "%nginxConf%" -p "%nginxPrefix%" -s stop)
2016-11-24 09:56:22 +00:00
forever stopall
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