mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-05-22 05:38:46 +00:00
11 lines
183 B
Bash
11 lines
183 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
if [ $1 = "production" ]; then
|
||
|
|
echo "Starting production server";
|
||
|
|
grunt production;
|
||
|
|
else
|
||
|
|
echo "Starting development server";
|
||
|
|
grunt development;
|
||
|
|
fi
|
||
|
|
|
||
|
|
node ./src/server.js
|