-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
42 lines (31 loc) · 780 Bytes
/
Makefile
File metadata and controls
42 lines (31 loc) · 780 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
40
41
42
SHELL=/bin/bash -euo pipefail
install: install-node install-python install-hooks
install-python:
poetry install
install-node:
npm install
install-hooks:
cp scripts/pre-commit .git/hooks/pre-commit
test:
@echo "No tests configured."
clean:
rm -rf dist
release: clean publish
mkdir -p dist
cp build/canary-api.json dist
cp -R e2e dist
mkdir -p dist/proxies/live
cp -Rv proxies/live/apiproxy dist/proxies/live
cp ecs-proxies-deploy.yml dist/ecs-deploy-all.yml
cp Makefile pytest.ini poetry.lock poetry.toml pyproject.toml dist
check-licenses:
@echo "Not configured"
lint:
@echo "Not configured"
publish: clean
mkdir -p build
npm run publish
build-proxy:
rm -rf build/proxies;
mkdir -p build/proxies/live;
cp -Rv proxies/live/apiproxy build/proxies/live