aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.prod
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-03-04 22:55:01 +0900
committernsfisis <nsfisis@gmail.com>2025-03-08 10:12:44 +0900
commit1e6df136d8202c8adf65948527f4c3e7583b338c (patch)
tree7c82476f6bbbc71d72ab7e71e39559eca197fd95 /Makefile.prod
parent54316868c3bec1ff9b04643dfe6c13cf56bf3246 (diff)
downloadiosdc-japan-2025-albatross-1e6df136d8202c8adf65948527f4c3e7583b338c.tar.gz
iosdc-japan-2025-albatross-1e6df136d8202c8adf65948527f4c3e7583b338c.tar.zst
iosdc-japan-2025-albatross-1e6df136d8202c8adf65948527f4c3e7583b338c.zip
websocket to polling
Diffstat (limited to 'Makefile.prod')
-rw-r--r--Makefile.prod5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.prod b/Makefile.prod
index fc7c511..fd4046b 100644
--- a/Makefile.prod
+++ b/Makefile.prod
@@ -42,6 +42,11 @@ sqldef-dryrun: down
${DOCKER_COMPOSE} up --wait db
${DOCKER_COMPOSE} run --no-TTY tools psqldef --dry-run < ./backend/schema.sql
+.PHONY: asynq
+asynq:
+ ${DOCKER_COMPOSE} up --wait db
+ ${DOCKER_COMPOSE} run tools go run github.com/hibiken/asynq/tools/asynq dash
+
.PHONY: sqldef
sqldef: down
${DOCKER_COMPOSE} build db