We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74f0f13 commit 890eb7fCopy full SHA for 890eb7f
start.sh
@@ -0,0 +1,8 @@
1
+#!/usr/bin/env bash
2
+echo "Installing NPM dependencies with yarn"
3
+(cd app && yarn install)
4
+
5
+echo "Running go server"
6
+(cd server && go run main.go) &
7
+echo "Running frontend application"
8
+(cd app && yarn start) &
0 commit comments