Fix jwt-token

This commit is contained in:
2025-08-17 05:02:19 +02:00
parent 5d224a13d0
commit 53448b9f30
9 changed files with 89 additions and 89 deletions

View File

@@ -130,7 +130,7 @@ cp .env.docker .env
# TWILIO_PHONE_NUMBER=your_phone
# 3. Start the system
docker-compose up -d
docker compose up -d
# 4. Access the application
# Frontend: http://localhost:3000
@@ -142,9 +142,9 @@ docker-start.bat # Windows
```
**Docker Profiles:**
- **Default**: `docker-compose up -d` (Frontend + Backend + Database + Redis)
- **Production**: `docker-compose --profile production up -d` (+ Nginx proxy)
- **Simulation**: `docker-compose --profile simulation up -d` (+ Python simulator)
- **Default**: `docker compose up -d` (Frontend + Backend + Database + Redis)
- **Production**: `docker compose --profile production up -d` (+ Nginx proxy)
- **Simulation**: `docker compose --profile simulation up -d` (+ Python simulator)
For detailed Docker deployment guide, see [docs/DOCKER_DEPLOYMENT.md](docs/DOCKER_DEPLOYMENT.md).
@@ -363,7 +363,7 @@ Based on the requirements, here are additional features that would enhance the s
### Docker Deployment
```bash
# Build and run with Docker Compose
docker-compose up -d
docker compose up -d
```
### Manual Deployment