A Next.js application.
- Next.js 15.2.1 with App Router
- TypeScript
- Tailwind CSS for styling
- Server-side rendering with proper cookie handling
- Drizzle ORM for database management and migrations
- Clone the repository
- Install dependencies:
npm install
- Create a
.env.local
file based on.env.local.example
and add your Database credentials:DATABASE_URL=your-database-url
- Initialize the database schema and migrations:
npm run db:init
- Run the development server:
npm run dev
This project uses Drizzle ORM to manage database schemas and migrations:
-
Initialize the migration system (first time only):
npm run db:init
-
Generate migrations from schema changes:
npm run db:generate
-
Apply migrations to your database:
npm run db:migrate
-
Generate and apply migrations in one step:
npm run db:migrate:run
-
For development/prototyping (bypasses migration files):
npm run db:push
-
View and manage your database with Drizzle Studio:
npm run db:studio
/app
- Next.js App Router pages and layouts/components
- React components/lib
- Utility functions/lib/drizzle
- Database schema and Drizzle ORM setup