Get all cards for a deck
Build and Push Docker Image / build (push) Successful in 2m30s

This commit is contained in:
2026-06-29 00:45:24 -07:00
parent 0595285c25
commit 03555d4744
2 changed files with 4 additions and 2 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
import { API_PORT, APPLICATION_NAME } from "@/config"
import { API_PORT, APPLICATION_NAME, GIT_COMMIT_HASH, RELEASE_TAG } from "@/config"
import logger from "@/utils/logger"
import app from "@/app"
import { enqueueJobs } from "@/scheduler"
app.listen(API_PORT, async () => {
logger.info(`${APPLICATION_NAME} API listenting on port ${API_PORT}`)
logger.info(`${APPLICATION_NAME} API listenting on port ${API_PORT} (${RELEASE_TAG} ${GIT_COMMIT_HASH})`)
await enqueueJobs()
})