-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
36 lines (28 loc) · 672 Bytes
/
Makefile
File metadata and controls
36 lines (28 loc) · 672 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
SHELL := /bin/bash
synth-deploy: synth deploy
. .venv/bin/activate && \
python obtain_key.py get
install:
. .venv/bin/activate && \
pip install -r requirements.txt -q
bootstrap: install
. .venv/bin/activate && \
cdk bootstrap
synth: install
. .venv/bin/activate && \
cdk synth
deploy: install
. .venv/bin/activate && \
cdk deploy --all --require-approval never --outputs-file outputs.json
key: install
. .venv/bin/activate && \
python obtain_key.py get
destroy: install
. .venv/bin/activate && \
cdk destroy --all
clean: install
. .venv/bin/activate && \
cdk destroy --all --force && \
python obtain_key.py remove
rm -rf cdk.out
rm outputs.json