-
Notifications
You must be signed in to change notification settings - Fork 11
/
Makefile
42 lines (30 loc) · 1002 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
clean-deps:
docker compose down
start-deps:
docker compose up -d
direnv reload
reset-deps: clean-deps start-deps
realtime-start-server:
. ./.envrc && cd realtime && yarn tsnd --respawn --files -r tsconfig-paths/register -r src/services/tracing.ts \
src/servers/realtime/run-monitoring.ts | yarn pino-pretty -c -l
realtime-start: start-deps realtime-start-server
realtime-watch-compile:
yarn realtime watch-compile
realtime-check-code:
yarn realtime tsc-check
yarn realtime eslint-check
yarn realtime build
realtime-unit-in-ci:
yarn realtime ci:test:unit
history-start-server:
. ./.envrc && cd history && yarn tsnd --respawn --files -r tsconfig-paths/register -r src/services/tracing.ts \
src/servers/history/run.ts | yarn pino-pretty -c -l
history-start: start-deps history-start-server
history-watch-compile:
yarn history watch-compile
history-check-code:
yarn history tsc-check
yarn history eslint-check
yarn history build
history-unit-in-ci:
yarn history ci:test:unit