-
Notifications
You must be signed in to change notification settings - Fork 1
/
justfile
83 lines (52 loc) · 1.1 KB
/
justfile
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# ----- dev -----
dev:
bun dev
# ----- build -----
build:
bun run build
# ----- install -----
install: install-bun && install-poetry
install-bun:
bun install
install-poetry:
just packages/python/install
# ----- update -----
update: update-bun && update-poetry
update-bun:
bun update
update-poetry:
just packages/python/update
# ----- format -----
format: format-prettier && format-ruff
format-prettier:
bun run prettier --write .
format-ruff:
just packages/python/format
# ----- lint -----
lint: lint-eslint && lint-ruff
lint-eslint:
bun run lint
lint-ruff:
just packages/python/lint
# ----- check -----
check: check-prettier && check-ruff
check-prettier:
bun run prettier --check .
check-ruff:
just packages/python/check
# ----- railway -----
railway:
just apps/web/railway
just apps/server/railway
# ----- env -----
env:
just apps/web/railway
just apps/server/railway
# ----- nuke -----
nuke:
rm -rf node_modules
rm -rf apps/server/node_modules
rm -rf apps/web/node_modules
# ----- postgres -----
postgres:
docker compose -f docker-compose.dev.yml up