Remix.run Logo
AlexSalikov 7 hours ago

Similar approach here. I run a side project on Next.js + Vercel (free tier) + Neon Postgres (free tier). Total hosting cost: $0/month.

The one place I'd push back on SQLite: if your app has any write concurrency from external processes (cron jobs, webhooks), WAL mode helps but you still hit lock contention. I have data collection scripts running every 30 minutes that write to the same DB the web app reads from. Postgres handled that cleanly from day one. Neon's free tier is 512MB with connection pooling — more than enough for a side project with real data.

operatingthetan 3 hours ago | parent [-]

I guess it depends on what it is, but the Vercel free tiers don't allow commercial projects. I have no idea if they actually check though.