-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
49 lines (37 loc) · 1.26 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
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
@npm run generate-graphql-schema
build-docker:
@docker build . -t joystream/storage-squid
migrate:
@npx squid-typeorm-migration apply
dbgen:
@npx squid-typeorm-migration generate
generate-migrations:
@rm db/migrations/*-Data.js || true
@docker run -d --name temp_migrations_db \
-e POSTGRES_DB=squid \
-e POSTGRES_HOST_AUTH_METHOD=trust \
-v temp_migrations_db_volume:/var/lib/postgresql/data \
-v ./db/postgres.conf:/etc/postgresql/postgresql.conf \
-p 5555:5555 postgres:14 postgres -p 5555 || true
@export DB_PORT=5555 && sleep 5 && npx squid-typeorm-migration generate
@docker rm temp_migrations_db -vf || true
@docker volume rm temp_migrations_db_volume || true
codegen:
@npm run generate:input-schema || true
@npx squid-typeorm-codegen
typegen:
@npx squid-substrate-typegen typegen.json
prepare: install typegen codegen build
up-squid:
@docker network create joystream_default || true
@docker compose up -d
down-squid:
@docker compose down -v
.PHONY: build serve process migrate codegen typegen prepare up-squid down-squid