Skip to content

Commit

Permalink
[Tech] fix after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
claire2212 committed Oct 20, 2023
1 parent e352bbc commit ee5f2b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dev-lint-frontend:
cd frontend && npm run test:lint:partial

test-back:
cd backend && ./gradlew clean test
cd backend && ./mvnw clean && ./mvnw test

test-front:
cd frontend && npm run test:unit
Expand All @@ -39,7 +39,7 @@ dev-check-config:
dev-run-back-with-infra: dev-erase-db dev-run-infra dev-clean-target-env dev-run-back

dev-run-back:
cd backend && ./gradlew bootRun --args='--spring.profiles.active=dev --spring.config.additional-location=$(BACKEND_CONFIGURATION_FOLDER)'
cd backend && ./mvnw spring-boot:run -Dspring-boot.run.arguments="--spring.config.additional-location="$(BACKEND_CONFIGURATION_FOLDER)"" -Dspring-boot.run.profiles="dev"

dev-run-infra:
@echo "Preparing database"
Expand Down

0 comments on commit ee5f2b2

Please sign in to comment.