mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-04-14 19:56:23 +00:00
11 lines
No EOL
183 B
Bash
Executable file
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 |