-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Makefile
107 lines (72 loc) · 2.6 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
.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
tags:
deno run --unstable --allow-read utils/tags.js
qa-summary:
deno run --unstable --allow-read utils/exec.js qaSummary
schedule: plan
plan:
deno run --unstable --allow-read --allow-write utils/plan.js $(num) $(append)
plan-candidates:
js-yaml dist/22/schedule-candidates.json > spec/22/schedule-candidates.yaml
schedule: plan plan-candidates build
schedule-multi:
tmux new-session -d "make schedule num=$(num) append=true"
tmux split-window -d "make schedule num=$(num) append=true"
tmux split-window -d "make schedule num=$(num) append=true"
tmux split-window -d "make schedule num=$(num) append=true"
tmux split-window -d "make schedule num=$(num) append=true"
tmux attach
schedule-pdf:
mkdir -p dist/22/pdf && cd utils/schedule-pdf && node index.js $(local)
id:
deno run --unstable --allow-read utils/schedule-id.js
install:
deno cache ./utils/*.js
pretalx-sync:
deno run --unstable --allow-read --allow-write --allow-net --allow-env utils/pretalx-sync.js $(entry) $(cmd)
psync:
make pretalx-sync entry=23 cmd=talks