Install Community Edition
Use Docker Compose
Section titled “Use Docker Compose”git clone https://github.com/Sparkable-dev/sparkfeed.gitcd sparkfeedcp .env.example .envGenerate values for POSTGRES_PASSWORD and BETTER_AUTH_SECRET, then put them in .env.
openssl rand -hex 24openssl rand -base64 32Start the application and PostgreSQL:
docker compose up --buildOpen http://localhost:3000. The first account becomes the instance owner.
Run from source
Section titled “Run from source”Create a PostgreSQL database and set DATABASE_URL in .env.local.
bun install --frozen-lockfilecp .env.example .env.localbun run db:migratebun run devDo not use db:push for a database that you intend to deploy. It does not update the migration journal.