forked from utxo-foundation/utxo-prague
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
78 lines (51 loc) · 1.79 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
.PHONY: all build
all: test build
test:
deno test --unstable --allow-read utils/test.js
link-check:
lychee spec/**/*.yaml
format:
deno fmt utils/*.js README.md
fmt: format
build:
deno run --unstable --allow-read --allow-write utils/exec.js build
docs-update:
deno run --unstable --allow-read --allow-write utils/update-docs.js
speakers-list:
deno run --unstable --allow-read utils/speakers-list.js
speakers-table:
deno run --unstable --allow-read utils/update-docs.js speakersTableGen
speakers-leads:
deno run --unstable --allow-read utils/update-docs.js speakersLeadsGen
partners-community:
deno run --unstable --allow-read utils/update-docs.js partnersGen community
partners-sponsor:
deno run --unstable --allow-read utils/update-docs.js partnersGen sponsor
partners-medium:
deno run --unstable --allow-read utils/update-docs.js partnersGen medium
faqs:
deno run --unstable --allow-read utils/update-docs.js faqsGen
stats:
deno run --unstable --allow-read utils/stats.js
twitter:
deno run --unstable --allow-read --allow-write --allow-env --allow-net utils/twitter.js
twitter-photos:
deno run --unstable --allow-read --allow-write --allow-env --allow-net utils/twitter.js photos
events:
deno run --unstable --allow-read utils/events.js
team:
deno run --unstable --allow-read utils/team.js
schema:
deno run --unstable --allow-read utils/exec.js schemas
server:
cd dist && python -m SimpleHTTPServer 8000
media-kit:
deno run --unstable --allow-read --allow-run utils/media-kit.js
changelog:
deno run --unstable --allow-read --allow-write --allow-run utils/changelog.js
schedule: plan
plan:
deno run --unstable --allow-read --allow-write utils/plan.js $(num)
plan-candidates:
js-yaml dist/22/schedule-candidates.json > spec/22/schedule-candidates.yaml
schedule: plan plan-candidates build