Input-Text geht, CORS behoben

This commit is contained in:
2025-09-24 21:10:11 +00:00
parent ef4ab9e800
commit a9428fee94
23 changed files with 257 additions and 71 deletions

View File

@@ -33,6 +33,22 @@ A complete modern web application built with Node.js, TypeScript, React, and MyS
## <20> Quick Start
### ⚙️ Node Version
Empfohlene Node Version: **22.12.0** (oder LTS 20.19.x). Projekt liefert `.nvmrc`.
Mit nvm aktivieren:
```bash
nvm install 22.12.0
nvm use 22.12.0
```
Automatisch beim Wechsel ins Verzeichnis:
```bash
nvm use
```
Falls ohne nvm: Offizielles Binary oder Paketmanager (Node >=22.12.0) installieren.
### 1. Start the Database (existing Docker setup)
```bash
# From main project directory
@@ -42,6 +58,7 @@ docker-compose up -d
### 2. Start the Node.js Backend
```bash
cd backend
nvm use # optional, falls nvm
npm install
npm run build
node dist/app.js
@@ -50,6 +67,7 @@ node dist/app.js
### 3. Start the React Frontend
```bash
cd frontend
nvm use # optional
npm install
npm run dev
```