startup procedure fixed
This commit is contained in:
parent
526e94d263
commit
3446d70e08
2 changed files with 14 additions and 4 deletions
12
readme.md
12
readme.md
|
|
@ -31,7 +31,7 @@ Das Projekt besteht aus zwei Hauptkomponenten:
|
||||||
- `agent_service.py` - Multi-Agent-Orchestrierung
|
- `agent_service.py` - Multi-Agent-Orchestrierung
|
||||||
- `requirements.txt` - Python-Abhängigkeiten
|
- `requirements.txt` - Python-Abhängigkeiten
|
||||||
|
|
||||||
### Backend-Installation
|
### Backend-Installation Lokal
|
||||||
1. Virtuelle Umgebung erstellen und aktivieren:
|
1. Virtuelle Umgebung erstellen und aktivieren:
|
||||||
```bash
|
```bash
|
||||||
python -m venv venv
|
python -m venv venv
|
||||||
|
|
@ -54,6 +54,16 @@ Das Projekt besteht aus zwei Hauptkomponenten:
|
||||||
- Backend API: `http://localhost:8000`
|
- Backend API: `http://localhost:8000`
|
||||||
- API-Dokumentation: `http://localhost:8000/docs`
|
- 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
|
### Datenbank-Migration
|
||||||
Für größere Installationen die JSON-basierte Datenbank ersetzen durch:
|
Für größere Installationen die JSON-basierte Datenbank ersetzen durch:
|
||||||
- PostgreSQL für relationale Daten
|
- PostgreSQL für relationale Daten
|
||||||
|
|
|
||||||
|
|
@ -17,9 +17,9 @@ cryptography>=40.0.2 # Required by jose
|
||||||
# Utilities
|
# Utilities
|
||||||
typing-extensions>=4.5.0
|
typing-extensions>=4.5.0
|
||||||
python-dateutil>=2.8.2
|
python-dateutil>=2.8.2
|
||||||
uuid>=1.30
|
#uuid>=1.30
|
||||||
tqdm>=4.65.0 # For progress tracking
|
#tqdm>=4.65.0 # For progress tracking
|
||||||
pytz>=2023.3 # For timezone handling
|
#pytz>=2023.3 # For timezone handling
|
||||||
|
|
||||||
# === Development and Testing Dependencies ===
|
# === Development and Testing Dependencies ===
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue