startup procedure fixed

This commit is contained in:
valueon 2025-03-16 18:16:25 +01:00
parent 526e94d263
commit 3446d70e08
2 changed files with 14 additions and 4 deletions

View file

@ -31,7 +31,7 @@ Das Projekt besteht aus zwei Hauptkomponenten:
- `agent_service.py` - Multi-Agent-Orchestrierung
- `requirements.txt` - Python-Abhängigkeiten
### Backend-Installation
### Backend-Installation Lokal
1. Virtuelle Umgebung erstellen und aktivieren:
```bash
python -m venv venv
@ -54,6 +54,16 @@ Das Projekt besteht aus zwei Hauptkomponenten:
- Backend API: `http://localhost:8000`
- API-Dokumentation: `http://localhost:8000/docs`
### Installation inazure WEBAPP
Configuration:
- Python version <= 3.11
- Startup command: cd gwserver && uvicorn app:app --host 0.0.0.0 --port 8000
Environment varibales:
- Neue Variable PORT=8000
### Datenbank-Migration
Für größere Installationen die JSON-basierte Datenbank ersetzen durch:
- PostgreSQL für relationale Daten

View file

@ -17,9 +17,9 @@ cryptography>=40.0.2 # Required by jose
# Utilities
typing-extensions>=4.5.0
python-dateutil>=2.8.2
uuid>=1.30
tqdm>=4.65.0 # For progress tracking
pytz>=2023.3 # For timezone handling
#uuid>=1.30
#tqdm>=4.65.0 # For progress tracking
#pytz>=2023.3 # For timezone handling
# === Development and Testing Dependencies ===