-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMakefile
61 lines (46 loc) · 1.81 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
APP_CONTAINER_NAME = gcr.io/climatechangeai/floods-backend
BASE_CONTAINER_NAME = gcr.io/climatechangeai/floods-backend-base
CONTAINER_TAG = $(shell git rev-parse --verify HEAD)
CONTAINER_TAG = $(shell git rev-parse --verify HEAD)
PYTHONPATH := $(shell pwd):$(PYTHONPATH)
################################################################################
# Developer Tools
################################################################################
test:
python -m unittest discover tests
lint:
mypy ccai tests
pylint ccai/** tests/**
format:
black .
################################################################################
# Launching the server
################################################################################
develop:
FLASK_APP=ccai/bin/webserver.py DEBUG=1 FLASK_DEBUG=1 python -m flask run
serve:
gunicorn -w $(shell sysctl -n hw.ncpu) -b 0.0.0.0:5000 ccai.bin.webserver:app
################################################################################
# Utilities for building containers and deploying the API
################################################################################
container:
docker build \
-f Dockerfile \
-t $(APP_CONTAINER_NAME):$(CONTAINER_TAG) \
.
base-container:
docker build \
-f base.Dockerfile \
-t $(BASE_CONTAINER_NAME):$(CONTAINER_TAG) \
.
gcloud-auth:
gcloud auth configure-docker
gcloud container clusters get-credentials floods-backend --zone us-east1-b --project climatechangeai
push-container: gcloud-auth
docker push $(APP_CONTAINER_NAME):$(CONTAINER_TAG)
push-base-container: gcloud-auth
docker push $(BASE_CONTAINER_NAME):$(CONTAINER_TAG)
stage-deploy:
yq w -i k8s/deployment.yml spec.template.spec.containers[0].image $(APP_CONTAINER_NAME):$(CONTAINER_TAG)
deploy: gcloud-auth stage-deploy
kubectl apply -f ./k8s/deployment.yml