templating api

This commit is contained in:
2026-06-19 22:20:43 -07:00
parent 08d7a80f56
commit 84f894c356
110 changed files with 12432 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#!/bin/sh
if [ "$RUN_SCHEDULER" = "true" ]; then
echo "Running scheduler"
if [ "$NODE_ENV" = "production" ]; then
node ./dist/scheduler.js
else
npm run start:scheduler
fi
exit 0
fi
if [ "$NODE_ENV" = "production" ]; then
node ./dist/initializers/index.js
node ./dist/server.js
else
npm run initializers
npm run start
fi