We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae3cbaa commit 26dcae4Copy full SHA for 26dcae4
start.sh
@@ -67,24 +67,14 @@ fi
67
68
echo
69
echo "Installing dependencies."
70
+echo
71
npm install
72
73
74
-echo "Bundling components."
75
-node -e "require('grunt').tasks(['build']);"
76
-killall node
+echo "Bundling components and launching."
77
+node -e "require('grunt').tasks(['default']);"
78
-
79
-printf "Launching application and starting server"
80
81
-PYTHON_INSTALLED=$(program_is_installed python)
82
83
-if [ "$PYTHON_INSTALLED" == 0 ]; then
84
- printf "Please open http://localhost:3000 in your favorite browser"
85
- node ./bin/www
86
-else
87
- node ./bin/www & python -mwebbrowser http://localhost:3000
88
-fi
89
90
exit
0 commit comments