Paladin Farm & Ranch
PALADIN
Contact Us
Contact UsDisaster ResourcesUser ManualDeveloper Docs

© 2026 Paladin Farm and Ranch

PO Box 7228 Glen Rose, TX 76043

Stephen@PaladinFarmandRanch.com

Recommended Hosting

Hosting recommendations for production deployment

Current Production Setup

Paladin is currently deployed at paladinfarmandranch.com on infrastructure provided by Georgia Tech. The application runs as a standalone Next.js build behind Nginx, with a PostgreSQL database on the same server. GitHub Actions handles CI/CD (see .github/workflows/cd.yaml).

If the GT-provided server is no longer available, the following free-tier options are suitable:

ComponentRecommendedNotes
DatabaseNeon or SupabaseFree PostgreSQL hosting; no credit card required
ApplicationVercelFree tier for Next.js apps; automatic deployments from GitHub. Next.js standalone output is already configured (output: 'standalone' in next.config.mjs)
AlternativeRenderFree tier for web services + PostgreSQL if a single provider is preferred

Migration Notes

  • Update DATABASE_URL in environment variables to point to the new hosted PostgreSQL instance
  • Run npx prisma migrate deploy against the new database to apply the schema
  • Set all environment variables (see Environment Variables) on the hosting platform
  • Vercel auto-detects Next.js projects — connect the GitHub repo and it deploys on push