Skip to content

Commit 890eb7f

Browse files
author
Milan Pavlik
committed
Add start script
1 parent 74f0f13 commit 890eb7f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

start.sh

+8
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)