forked from microsoft/PubSec-Info-Assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
95 lines (66 loc) · 3.57 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
SHELL := /bin/bash
.PHONY: help
help: ## Show this help
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) \
| awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%s\033[0m|%s\n", $$1, $$2}' \
| column -t -s '|'
deploy: build infrastructure extract-env deploy-search-indexes deploy-functions deploy-webapp deploy-enrichments ## Deploy infrastructure and application code
build-deploy-webapp: build extract-env deploy-webapp ##Build and Deploy the Webapp
build-deploy-enrichments: build extract-env deploy-enrichments ##Build and Deploy the Enrichment Webapp
build-deploy-functions: build extract-env deploy-functions ##Build and Deploy the Functions
build: ## Build application code
@./scripts/build.sh
infrastructure: check-subscription ## Deploy infrastructure
@./scripts/inf-create.sh
extract-env: check-secure-mode-connectivity extract-env-debug-webapp extract-env-debug-functions ## Extract infrastructure.env file from Terraform output
@./scripts/json-to-env.sh < inf_output.json > ./scripts/environments/infrastructure.env
check-secure-mode-connectivity: ## Check secure mode connectivity
@./scripts/check-secure-mode-connectivity.sh
deploy-webapp: extract-env ## Deploys the web app code to Azure App Service
@./scripts/deploy-webapp.sh
deploy-functions: extract-env ## Deploys the function code to Azure Function Host
@./scripts/deploy-functions.sh
deploy-enrichments: extract-env ## Deploys the web app code to Azure App Service
@./scripts/deploy-enrichment-webapp.sh
deploy-search-indexes: extract-env ## Deploy search indexes
@./scripts/deploy-search-indexes.sh
extract-env-debug-webapp: ## Extract infrastructure.debug.env file from Terraform output
@./scripts/json-to-env.webapp.debug.sh < inf_output.json > ./scripts/environments/infrastructure.debug.env
extract-env-debug-functions: ## Extract local.settings.json to debug functions from Terraform output
@./scripts/json-to-env.function.debug.sh < inf_output.json > ./functions/local.settings.json
# Utils (used by other Makefile rules)
check-subscription:
@./scripts/check-subscription.sh
# CI rules (used by automated builds)
take-dir-ownership:
@sudo chown -R vscode .
terraform-remote-backend:
@./scripts/terraform-remote-backend.sh
infrastructure-remote-backend: terraform-remote-backend infrastructure
destroy-inf: check-subscription
@./scripts/inf-destroy.sh
functional-tests: extract-env ## Run functional tests to check the processing pipeline is working
@./scripts/functional-tests.sh
merge-databases: ## Upgrade from bicep to terraform
@figlet "Upgrading in place"
python ./scripts/merge-databases.py
import-state: check-subscription ## import state of current services to TF state
@./scripts/inf-import-state.sh
prep-upgrade: ## Command to merge databases and import TF state in prep for an upgrade from 1.0 to 1.n
@figlet "Upgrading"
merge-databases
import-state
prep-env: ## Apply role assignments as needed to upgrade
@figlet "Preparing Environment"
@./scripts/prep-env.sh
prep-migration-env: ## Prepare the environment for migration by assigning required roles
@./scripts/prep-migration-env.sh
run-data-migration: ## Run the data migration moving data from one resource group to another
python ./scripts/extract-content.py
manual-inf-destroy: ## A command triggered by a user to destroy a resource group, associated resources, and related Entra items
@./scripts/inf-manual-destroy.sh
run-backend-tests: ## Run backend tests
pip install -r ./app/backend/requirements.txt --disable-pip-version-check -q
pytest ./app/backend/testsuite.py