-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMakefile
36 lines (28 loc) · 863 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
.PHONY: deploy-lambdas-dev-testnet
deploy-lambdas-dev-testnet:
npx serverless deploy --stage dev-testnet --region eu-central-1
.PHONY: deploy-lambdas-testnet
deploy-lambdas-testnet:
npx serverless deploy --stage testnet --region eu-central-1
.PHONY: deploy-lambdas-mainnet-staging
deploy-lambdas-mainnet-staging:
npx serverless deploy --stage mainnet-stg --region eu-central-1
.PHONY: deploy-lambdas-mainnet
deploy-lambdas-mainnet:
npx serverless deploy --stage mainnet --region eu-central-1
.PHONY: migrate
migrate:
@echo "Migrating..."
npx sequelize-cli db:migrate
.PHONY: new-migration
new-migration:
npx sequelize migration:generate --name "$(NAME)"
.PHONY: seed_testnet
seed_testnet:
npx sequelize-cli db:seed --seed testnet
.PHONY: seed_mainnet
seed_mainnet:
npx sequelize-cli db:seed --seed mainnet
.PHONY: cleanup
cleanup:
rm db.sqlite3