Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
The Feed App Boilerplate built on Blitz.js, with Chakra UI, TypeScript, and a PostgreSQL setup.
FLITZ is a Blitz.js boilerplate for building feed-style web apps, preconfigured with Chakra UI, TypeScript, and a PostgreSQL database setup.
FLITZ is a feed app boilerplate built on Blitz.js, a full-stack React framework. It takes a PostgreSQL connection string and a Docker Compose setup, and it produces a running web application with Prisma-managed schemas and a development server on localhost:3000. The repository includes a one-click Railway deployment button to launch the app on Railway.
yarn prisma db push command.yarn test.yarn dev, and view it at localhost:3000.The README documents a five-step workflow: copy environment variables into .env.local, start PostgreSQL with docker-compose up -d, install dependencies with yarn install, sync the database schema with yarn prisma db push, then run yarn dev to open the app at localhost:3000. Tests run separately with yarn test using Jest.
Yes, FLITZ is a template repository you can use at no cost; there is no pricing model tied to the code itself.
FLITZ requires a DATABASE_URL pointing to a PostgreSQL database, plus POSTGRES_HOST_AUTH_METHOD=trust when using the provided Docker setup. The README shows these in .env.local, and a separate DATABASE_URL for test in .env.test.local.
Start PostgreSQL with docker-compose up -d, install dependencies with yarn install, push the Prisma schema with yarn prisma db push, and start the development server with yarn dev. The app runs at localhost:3000.
FLITZ includes Jest and react-testing-library. Run the test suite with yarn test from the project root.
