dsql-admin/dsql-app/docker/cron/entrypoint.sh
Benjamin Toby e95f4d1087 Updates
2025-02-16 17:12:40 +01:00

10 lines
137 B
Bash
Executable File

#!/bin/bash
cd /app
if [ "$NODE_ENV" == "production" ]; then
bun docker/cron/index.ts
else
bun --watch docker/cron/index.ts
fi