mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
32 lines
1.3 KiB
Bash
Executable File
32 lines
1.3 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# 🚀 Starting Documenso...
|
|
printf "🚀 Starting Documenso...\n\n"
|
|
|
|
# 🔐 Check certificate configuration
|
|
printf "🔐 Checking certificate configuration...\n"
|
|
|
|
CERT_PATH="${NEXT_PRIVATE_SIGNING_LOCAL_FILE_PATH:-/opt/documenso/cert.p12}"
|
|
|
|
if [ -f "$CERT_PATH" ] && [ -r "$CERT_PATH" ]; then
|
|
printf "✅ Certificate file found and readable - document signing is ready!\n"
|
|
else
|
|
printf "⚠️ Certificate not found or not readable\n"
|
|
printf "💡 Tip: Documenso will still start, but document signing will be unavailable\n"
|
|
printf "🔧 Check: http://localhost:3000/api/certificate-status for detailed status\n"
|
|
fi
|
|
|
|
printf "\n📚 Useful Links:\n"
|
|
printf "📖 Documentation: https://docs.documenso.com\n"
|
|
printf "🐳 Self-hosting guide: https://docs.documenso.com/developers/self-hosting\n"
|
|
printf "🔐 Certificate setup: https://docs.documenso.com/developers/self-hosting/signing-certificate\n"
|
|
printf "🏥 Health check: http://localhost:3000/api/health\n"
|
|
printf "📊 Certificate status: http://localhost:3000/api/certificate-status\n"
|
|
printf "👥 Community: https://github.com/documenso/documenso\n\n"
|
|
|
|
printf "🗄️ Running database migrations...\n"
|
|
npx prisma migrate deploy --schema ../../packages/prisma/schema.prisma
|
|
|
|
printf "🌟 Starting Documenso server...\n"
|
|
HOSTNAME=0.0.0.0 node build/server/main.js
|