Files
deardiary/start.sh
lotherk 37871271cc fix: strict anti-hallucination default prompt
- Replace creative/warm tone with factual summarization
- Explicitly forbid invention, assumption, or hallucination
- Model must ONLY use information from provided entries
- Acknowledge gaps rather than fill them
2026-03-26 20:29:40 +00:00

10 lines
172 B
Bash

#!/bin/sh
set -e
echo "Running database migrations..."
bunx prisma db push --accept-data-loss
echo "Starting server..."
nginx -g 'daemon off;' &
exec bun ./dist/index.js