Files
Momento/memento-note/docker-entrypoint.sh
sepehr 102ccd13d4
All checks were successful
Deploy to Production / Build and Deploy (push) Successful in 1m1s
fix: revert entrypoint to migrate deploy, add proper migration file
Create migration 20260426130000_add_agent_schedule_fields with the 3 new
Agent columns (scheduledTime, scheduledDay, timezone). Reverts entrypoint
back to prisma migrate deploy. Removes redundant migration step from
deploy.yaml.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-26 11:12:23 +02:00

9 lines
158 B
Bash

#!/bin/sh
set -e
echo "Running Prisma migrations..."
node ./node_modules/prisma/build/index.js migrate deploy
echo "Starting server..."
exec node server.js