forked from Hexlet/hexlet-correction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
48 lines (32 loc) · 884 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
.PHONY: build
build:
./gradlew clean check
package:
./gradlew clean bootJar -x test
clear:
./gradlew clean
docker compose -f docker/docker-compose.yml down -v
setup: build
test:
./gradlew unitTest integrationTest
test-unit-only:
./gradlew unitTest
test-integration-only:
./gradlew integrationTest
run-dev:
./gradlew bootRun --args='--spring.profiles.active=dev'
run-dev-docker-db: docker-infra-start run-dev
start: run-dev-docker-db
docker-infra-start:
docker compose -f docker/docker-compose.yml up -d -V --remove-orphans
run-dev-debug:
./gradlew bootRun --args='--spring.profiles.active=dev' -Dorg.gradle.jvmargs="-Xdebug"
update-versions:
./gradlew dependencyUpdates
vagrant-build:
vagrant up
vagrant ssh -c "cd /vagrant && make build"
vagrant-run:
vagrant ssh -c "cd /vagrant && make run-dev-docker-db"
lint:
./gradlew checkstyleMain checkstyleTest