-
Notifications
You must be signed in to change notification settings - Fork 101
/
Makefile
68 lines (45 loc) · 2.63 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
####################################################################################################################
# Setup containers to run Airflow
docker-spin-up:
docker compose up airflow-init && docker compose up --build -d
perms:
sudo mkdir -p logs plugins temp dags tests migrations data visualization && sudo chmod -R u=rwx,g=rwx,o=rwx logs plugins temp dags tests migrations data visualization
up: perms docker-spin-up
down:
docker compose down --volumes --rmi all
restart: down up
sh:
docker exec -ti webserver bash
####################################################################################################################
# Testing, auto formatting, type checks, & Lint checks
pytest:
docker exec webserver pytest -p no:warnings -v /opt/airflow/tests
format:
docker exec webserver python -m black -S --line-length 79 .
isort:
docker exec webserver isort .
type:
docker exec webserver mypy --ignore-missing-imports /opt/airflow
lint:
docker exec webserver flake8 /opt/airflow/dags
ci: isort format type lint pytest
####################################################################################################################
# Set up cloud infrastructure
tf-init:
terraform -chdir=./terraform init
infra-up:
terraform -chdir=./terraform apply
infra-down:
terraform -chdir=./terraform destroy
infra-config:
terraform -chdir=./terraform output
####################################################################################################################
# Port forwarding to local machine
cloud-metabase:
terraform -chdir=./terraform output -raw private_key > private_key.pem && chmod 600 private_key.pem && ssh -o "IdentitiesOnly yes" -i private_key.pem ubuntu@$$(terraform -chdir=./terraform output -raw ec2_public_dns) -N -f -L 3001:$$(terraform -chdir=./terraform output -raw ec2_public_dns):3000 && open http://localhost:3001 && rm private_key.pem
cloud-airflow:
terraform -chdir=./terraform output -raw private_key > private_key.pem && chmod 600 private_key.pem && ssh -o "IdentitiesOnly yes" -i private_key.pem ubuntu@$$(terraform -chdir=./terraform output -raw ec2_public_dns) -N -f -L 8081:$$(terraform -chdir=./terraform output -raw ec2_public_dns):8080 && open http://localhost:8081 && rm private_key.pem
####################################################################################################################
# Helpers
ssh-ec2:
terraform -chdir=./terraform output -raw private_key > private_key.pem && chmod 600 private_key.pem && ssh -o StrictHostKeyChecking=no -o IdentitiesOnly=yes -i private_key.pem ubuntu@$$(terraform -chdir=./terraform output -raw ec2_public_dns) && rm private_key.pem