forked from kodadot/rubick
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
52 lines (30 loc) · 718 Bytes
/
Copy pathMakefile
File metadata and controls
52 lines (30 loc) · 718 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
process: build
@node -r dotenv/config lib/processor.js
serve:
@npx squid-graphql-server
reset:
@npx sqd db drop
@npx sqd db create
@npx sqd db:migrate
migrate:
@npx sqd db:migrate
migration:
@npx sqd db:create-migration Data
build:
@npm run build
codegen:
@npx sqd codegen
typegen: kusamaVersions.json
@npx squid-substrate-typegen typegen.json
kusamaVersions.json:
@make explore
explore:
@npx squid-substrate-metadata-explorer \
--chain wss://kusama-rpc.polkadot.io \
--archive https://kusama.indexer.gc.subsquid.io/v4/graphql \
--out kusamaVersions.json
up:
@docker-compose up -d
down:
@docker-compose down
.PHONY: process serve start codegen migration migrate up down reset