forked from Joystream/orion
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
54 lines (36 loc) · 1.08 KB
/
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
49
50
51
52
53
54
process: migrate
@SQD_DEBUG=sqd:processor:mapping node -r dotenv-expand/config lib/processor.js
install:
@rm -rf node_modules # clean up node_modules to avoid issues with patch-package
@npm install
build:
@npm run build
build-docker:
@docker build . -t joystream/orion
serve:
@npx squid-graphql-server --subscriptions
serve-auth-api:
@npm run auth-server-start
migrate:
@npx squid-typeorm-migration apply
dbgen:
@npx squid-typeorm-migration generate
codegen:
@npm run generate:schema || true
@npx squid-typeorm-codegen
typegen:
@npx squid-substrate-typegen typegen.json
prepare: install codegen build
up-squid:
@docker network create joystream_default || true
@docker-compose up -d
up-archive:
@docker network create joystream_default || true
@docker-compose -f archive/docker-compose.yml up -d
up: up-archive up-squid
down-squid:
@docker-compose down -v
down-archive:
@docker-compose -f archive/docker-compose.yml down -v
down: down-squid down-archive
.PHONY: build serve process migrate codegen typegen prepare up-squid up-archive up down-squid down-archive down