-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMakefile
More file actions
52 lines (38 loc) · 955 Bytes
/
Makefile
File metadata and controls
52 lines (38 loc) · 955 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
43
44
45
46
47
48
49
50
51
52
SHELL=/bin/bash -euo pipefail
install: install-node install-python install-hooks
install-python:
poetry install
install-node:
npm install --legacy-peer-deps
cd sandbox && npm install --legacy-peer-deps
install-hooks:
cp scripts/pre-commit .git/hooks/pre-commit
lint:
npm run lint
find . -name '*.py' | xargs poetry run flake8
clean:
rm -rf build
rm -rf dist
publish: clean
mkdir -p build
npm run publish 2> /dev/null
serve:
npm run serve
check-licenses:
npm run check-licenses
scripts/check_python_licenses.sh
format:
poetry run black **/*.py
sandbox:
cd sandbox && npm run start
build-proxy:
scripts/build_proxy.sh
release: clean publish build-proxy
mkdir -p dist
cp -r build/. dist
cp -r tests dist
cp ecs-proxies-deploy.yml dist/ecs-deploy-sandbox.yml
cp ecs-proxies-deploy.yml dist/ecs-deploy-internal-qa-sandbox.yml
cp ecs-proxies-deploy.yml dist/ecs-deploy-internal-dev-sandbox.yml
test:
echo "TODO: add tests"