A unified full-stack template with SvelteKit (Svelte 5), TailwindCSS, DaisyUI, AuthJS, Postgres, and more.
by ctwhome
.env.example
to .env
and fill in the required variablesIt will run the database, migrations and frontend services.
docker compose up
# Start everything (including the seed service):
docker compose --profile seed up
# or just run the seed container on demand:
docker compose --profile seed run seed
docker compose down -v # Remove all volumes, carefull all data will be lost.
docker compose logs -f
bun install
bun dev
Visit http://localhost:9000 to open the application.
This project supports Conventional Commits for automated versioning:
# Regular commits work normally
git commit -m "update readme"
# Use conventional format for automatic versioning
git commit -m "feat: add new feature" # Minor version bump
git commit -m "fix: resolve bug" # Patch version bump
No enforcement - commit as you prefer! See Versioning Guide for details.
Releases are automated via GitHub Actions when pushing to main
:
View releases at Releases and changelog at CHANGELOG.md.