habitica/start.sh

11 lines
183 B
Bash
Raw Normal View History

2013-09-06 20:33:00 +00:00
#!/bin/sh
if [ $1 = "production" ]; then
echo "Starting production server";
grunt production;
else
echo "Starting development server";
grunt development;
fi
node ./src/server.js