
- 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
18 lines
334 B
Makefile
18 lines
334 B
Makefile
.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
|