docs: Screenshots in README.md

This commit is contained in:
ISA
2025-06-05 11:28:56 +02:00
parent 40cb07b485
commit 9273195d8f
16 changed files with 302 additions and 49 deletions

54
docs/guide/setup-dev.md Normal file
View File

@@ -0,0 +1,54 @@
# 🧑‍💻 Lokale Entwicklung mit NodeMap
Diese Anleitung richtet sich an Entwickler, die NodeMap lokal weiterentwickeln möchten.
---
## Voraussetzungen
- Node.js v18+
- NPM
- Chrome / Edge / Firefox
---
## Schritte
```bash
npm install
npm run dev
```
---
## Optionen
- **Mockdaten-Modus aktivieren:**
```env
NEXT_PUBLIC_USE_MOCKS=true
```
- **Umgebungsvariablen lokal definieren:**
Datei `.env.local` mit Inhalten wie:
```
NEXT_PUBLIC_API_URL=http://localhost:3001
NEXT_PUBLIC_USE_MOCKS=true
```
---
## Debugging
- Verwende `console.log` in Komponenten oder Redux-Slices
- Browser-DevTools & Redux DevTools empfohlen
---
## Weitere Dokumentation
- Projektstruktur: [project-structure.md](project-structure.md)
- Webservices: [webservices.md](webservices.md)
- Zustandverwaltung: [redux-zustand.md](redux-zustand.md)