File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,12 @@ set -euo pipefail
5
5
PROJECT_ROOT=" $( git rev-parse --show-toplevel) "
6
6
cd " ${PROJECT_ROOT} "
7
7
8
- # Do initial build - a dev build for coderd that doesn't require front-end assets
9
- make dev/go/coderd
8
+ # Do initial build - a dev build for coderd.
9
+ # It's OK that we don't build the front-end before - because the front-end
10
+ # assets are handled by the `yarn dev` devserver.
11
+ make bin/coderd
10
12
11
13
# This is a way to run multiple processes in parallel, and have Ctrl-C work correctly
12
14
# to kill both at the same time. For more details, see:
13
15
# https://stackoverflow.com/questions/3004811/how-do-you-run-multiple-programs-in-parallel-from-a-bash-script
14
- (trap ' kill 0' SIGINT; CODERV2_HOST=http://127.0.0.1:3000 yarn dev & ./build /coderd)
16
+ (trap ' kill 0' SIGINT; CODERV2_HOST=http://127.0.0.1:3000 yarn dev & ./bin /coderd)
You can’t perform that action at this time.
0 commit comments