Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions create-a-container/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,10 @@ build: deps
# --no-package-lock`. This is a fast, incremental install that keeps
# devDependencies and runs the server's patch-package postinstall, but never
# rewrites package-lock.json (so `make dev` leaves the lockfile untouched even
# when the local npm would otherwise renormalize it). Then run migrations, seed
# a localhost site + dummy node, build the client once, and run three processes
# together via concurrently:
# when the local npm would otherwise renormalize it). Then run migrations (which
# also runs the dev-only seeders, e.g. a localhost site + dummy node, via
# `db:seed:all`), build the client once, and run three processes together via
# concurrently:
# - server (nodemon, restarts on change)
# - job-runner (so container creation exercises the real POST /containers ->
# Job -> job-runner -> bin/create-container.js -> DummyApi path)
Expand All @@ -72,7 +73,6 @@ dev:
npm install --no-package-lock
npm --prefix client install --no-package-lock
npm run db:migrate
node bin/dev-bootstrap.js
npm --prefix client run build
@echo "Starting Manager (server + job-runner + client watch) at http://localhost:3000 ..."
$(LOG_LEVEL_PREFIX)npx concurrently -n server,jobs,client -c blue,magenta,green \
Expand Down
Loading
Loading