habitica/start.sh
Matteo Pagliazzi b0bf1d4c58 finish
2013-09-06 22:33:00 +02:00

11 lines
No EOL
183 B
Bash
Executable file

#!/bin/sh
if [ $1 = "production" ]; then
echo "Starting production server";
grunt production;
else
echo "Starting development server";
grunt development;
fi
node ./src/server.js