chore: scaffold Next.js + Prisma + Tailwind
Initialise le projet Karbé : - Next.js 16 (App Router, TypeScript) + Tailwind CSS v4 + ESLint - Prisma avec datasource PostgreSQL, schema minimal et client généré dans src/generated/prisma (postinstall: prisma generate) - Page d'accueil placeholder (titre + mission) - .env.example (DATABASE_URL, NEXTAUTH_SECRET) - README avec instructions de setup Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
parent
9fbf95f3cc
commit
e6a9bb7d64
22 changed files with 8104 additions and 125 deletions
15
prisma/schema.prisma
Normal file
15
prisma/schema.prisma
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
// This is your Prisma schema file,
|
||||
// learn more about it in the docs: https://pris.ly/d/prisma-schema
|
||||
|
||||
// Get a free hosted Postgres database in seconds: `npx create-db`
|
||||
|
||||
generator client {
|
||||
provider = "prisma-client"
|
||||
output = "../src/generated/prisma"
|
||||
}
|
||||
|
||||
datasource db {
|
||||
provider = "postgresql"
|
||||
}
|
||||
|
||||
// Les modèles Karbé (carbets, réservations, utilisateurs…) seront ajoutés ici.
|
||||
Loading…
Add table
Add a link
Reference in a new issue