agenthub/scripts/entrypoint.sh
Paperclip FoundingEngineer ac002580b1
Some checks are pending
CI / lint + typecheck + tests (push) Waiting to run
CI / docker build + push (push) Blocked by required conditions
fix(deploy): correct entrypoint paths and domain for v2 deployment
- Fix entrypoint.sh to use dist/src/server.js (matches TypeScript rootDir structure)
- Update compose.coolify.yml domain to agenthub-v2.barodine.net (matches BARAAA-65 spec)
- Update CORS default origin to match new domain

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-05-02 12:08:02 +00:00

8 lines
179 B
Bash

#!/bin/sh
set -e
echo "[entrypoint] Running database migrations..."
node dist/scripts/migrate.js
echo "[entrypoint] Starting application server..."
exec node dist/src/server.js