-`npx prisma studio` - Prisma Studio öffnen (Datenbank-Viewer)
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
## Datenbank
This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
Das Projekt verwendet Prisma ORM mit SQLite. Die Datenbank-Schema-Definitionen befinden sich in `prisma/schema.prisma`.
### Migrationen
Neue Migrationen erstellen:
```bash
npx prisma migrate dev --name migration_name
```
Datenbank zurücksetzen (⚠️ löscht alle Daten):
```bash
npx prisma migrate reset
```
## Learn More
## Entwicklung
To learn more about Next.js, take a look at the following resources:
### Neue Module hinzufügen
-[Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
-[Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
1. Erstellen Sie eine neue Seite in `app/[modul-name]/page.tsx`
2. Fügen Sie API-Routen in `app/api/[modul-name]/route.ts` hinzu
3. Aktualisieren Sie das Dashboard in `app/page.tsx` mit einem Link zum neuen Modul
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
### Authentifizierung
## Deploy on Vercel
Die Authentifizierung/SSO ist noch nicht implementiert. Die Middleware-Struktur ist in `middleware.ts` vorbereitet.
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
## License
Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.