Backend GKE Deploy, access key for backend
- Configs and automation for deploying backend to GKE - First steps to adding an optional token check for requests to backend - First steps frontend sending optional token to backend when configured
This commit is contained in:
parent
0fedaef537
commit
e6c2042df6
17 changed files with 296 additions and 39 deletions
18
Makefile
Normal file
18
Makefile
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
.PHONY: run
|
||||
run:
|
||||
docker compose -f docker-compose.yaml up
|
||||
|
||||
|
||||
.PHONY: rebuild-run
|
||||
rebuild-run:
|
||||
docker compose -f docker-compose.yaml up --build
|
||||
|
||||
|
||||
.PHONY: run-app-only
|
||||
run-app-only:
|
||||
docker compose -f app-docker-compose.yaml up
|
||||
|
||||
|
||||
.PHONY: rebuild-run-app-only
|
||||
rebuild-run-app-only:
|
||||
docker compose -f app-docker-compose.yaml up --build
|
||||
Loading…
Add table
Add a link
Reference in a new issue