Dirstarter requires a Postgres database to work. This guide covers various hosting options for your database, from managed services to self-hosted solutions.
Hosted Postgres services
Hosted Postgres services are a great way to get started with Postgres. They are easy to set up and use, and most of them offer a generous free tier.
Neon
Neon is a serverless Postgres service with a generous free tier.
- Serverless architecture
- Branching for development/staging
- Automatic scaling
- Free tier with 500MB storage
Supabase
Supabase provides Postgres databases with additional features like authentication and storage.
- Full Postgres support
- Additional services (auth, storage, etc.)
- Free tier with 500MB storage and 5GB data transfer
- Simple dashboard
Prisma Postgres
Prisma Postgres is a managed Postgres service with a generous free tier.
- Serverless architecture
- Automatic scaling
- Free tier with 1 GB storage
Self-Hosted Options
Local Installation
Install Postgres directly on your machine:
- Download from postgres.org or using Homebrew
- Install and set up a password
- Create a database
Then use this connection string:
Edit on GitHub
Last updated on