-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
52 lines (36 loc) · 788 Bytes
/
Makefile
File metadata and controls
52 lines (36 loc) · 788 Bytes
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
49
50
51
52
db-shell:
PGPASSWORD=test psql -h localhost -p 5445 -U test -d test_db
db-shell-test:
PGPASSWORD=test psql -h localhost -p 5446 -U test -d test_db
dev-up:
docker compose up
dev-down:
docker compose down
format-core:
sbt "core/scalafmt"
format:
sbt "core/scalafmt"
sbt "common/scalafmt"
sbt "spark/scalafmt"
format-core:
sbt "core/scalafmt"
format-common:
sbt "common/scalafmt"
format-spark:
sbt "spark/scalafmt"
fix-spark:
sbt "spark/scalafmt"
fix-core:
sbt "core/scalafix"
fix-common:
sbt "common/scalafix"
fix:
sbt "core/scalafix"
sbt "common/scalafix"
sbt "spark/scalafix"
web:
./launcher :web
create-user:
./launcher :create-user -cli-command true x --username test --password test --email test@email.com --roles ADMIN
migrate:
./launcher :migrate