aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-07-28 16:01:41 +0900
committernsfisis <nsfisis@gmail.com>2024-07-28 17:12:45 +0900
commit2d5f913a431c4223a16c88551ffff4100ac483c4 (patch)
tree4ea9f9db9dbe7cf1b7720205ae281a6b8bcca8e9 /Makefile
parent0dd94cbea6e857896c46d17493725f97369d99f9 (diff)
downloadphperkaigi-2025-albatross-2d5f913a431c4223a16c88551ffff4100ac483c4.tar.gz
phperkaigi-2025-albatross-2d5f913a431c4223a16c88551ffff4100ac483c4.tar.zst
phperkaigi-2025-albatross-2d5f913a431c4223a16c88551ffff4100ac483c4.zip
feat: implement game entry
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 11 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 023932c..07f682f 100644
--- a/Makefile
+++ b/Makefile
@@ -10,12 +10,20 @@ up:
down:
docker compose down
-.PHONY: api-server-only
-api-server-only:
+.PHONY: api-server-only-build
+api-server-only-build:
+ docker compose build api-server-only
+
+.PHONY: api-server-only-up
+api-server-only-up:
docker compose up -d api-server-only
+.PHONY: api-server-only-down
+api-server-only-down:
+ docker compose down api-server-only db
+
.PHONY: psql
-psql: up
+psql:
docker compose exec db psql --user=postgres albatross
.PHONY: sqldef-dryrun