-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
39 lines (29 loc) · 966 Bytes
/
Copy pathMakefile
File metadata and controls
39 lines (29 loc) · 966 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
.PHONY: all install gate typecheck lint format bootstrap issue reproduce reproduce-1 reproduce-2 reproduce-3 clean
# The local gate mirrors CI: typecheck + format check.
# (The reproduce:* scripts hit live testnet and are run on-demand, not in the gate — see docs/decisions.md D9.)
all: gate
install:
npm install
gate: typecheck lint
typecheck:
npm run typecheck
lint:
npm run lint
format:
npm run format
# Create + friendbot-fund the issuer / distributor / user accounts and write the keystore.
bootstrap:
npm run bootstrap
# Issue + distribute the asset from asset.config.ts (flags -> trustlines -> distribution -> pool).
issue:
npm run issue
# The per-class "reproduce this" acceptance checks (live testnet).
reproduce: reproduce-1 reproduce-2 reproduce-3
reproduce-1:
npm run reproduce:class-1
reproduce-2:
npm run reproduce:class-2
reproduce-3:
npm run reproduce:class-3
clean:
rm -rf node_modules dist frontend/node_modules frontend/dist