Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: No longer require -j4 in make dev #1169

Merged
merged 1 commit into from
Nov 13, 2023
Merged
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
build: No longer require -j4 in make dev
Developers can simply run `make dev` instead of `make -j4 dev`.
Since the target does only work with parallel execution endabled,
the parallel execution is now the default.
  • Loading branch information
MoritzWeber0 committed Nov 6, 2023
commit 97e6db6d7b5dad7c98402cf97ad4fe73348c3c91
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -157,8 +157,9 @@ provision-guacamole:
kubectl exec -i --context k3d-$(CLUSTER_NAME) --namespace $(NAMESPACE) deployment/$(RELEASE)-guacamole-postgres -- psql -U guacamole guacamole
@echo "Guacamole database initialized sucessfully.";

# Execute with `make -j4 dev`
dev: dev-oauth-mock dev-frontend dev-backend dev-docs

dev:
$(MAKE) -j4 dev-frontend dev-backend dev-oauth-mock dev-docs

dev-frontend:
$(MAKE) -C frontend dev
2 changes: 1 addition & 1 deletion docs/docs/development/index.md
Original file line number Diff line number Diff line change
@@ -57,7 +57,7 @@ initial setup (only required once):
Then, run the following command to start the dev environment:

```zsh
make -j4 dev
make dev
```

If everything went well, the frontend and backend should be running now:
Loading