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
2764137d2b
22 changed files with 8104 additions and 125 deletions
7
.env.example
Normal file
7
.env.example
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Copiez ce fichier en `.env` et renseignez vos valeurs.
|
||||
|
||||
# Connexion PostgreSQL utilisée par Prisma.
|
||||
DATABASE_URL="postgresql://user:password@localhost:5432/karbe?schema=public"
|
||||
|
||||
# Secret pour NextAuth (à générer, ex: `openssl rand -base64 32`).
|
||||
NEXTAUTH_SECRET="changeme"
|
||||
Loading…
Add table
Add a link
Reference in a new issue