10 lines
137 B
Bash
10 lines
137 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
cd /app
|
||
|
|
||
|
if [ "$NODE_ENV" == "production" ]; then
|
||
|
bun docker/cron/index.ts
|
||
|
else
|
||
|
bun --watch docker/cron/index.ts
|
||
|
fi
|