fix: 1:1 prototype port + deployment fixes #3

Merged
Leopoldadmin merged 3 commits from feature/T04-rentman-integration into main 2026-07-10 20:50:02 +00:00
3 changed files with 3 additions and 3 deletions
Showing only changes of commit 7b1bebe7da - Show all commits
+1 -1
View File
@@ -9,7 +9,7 @@ RENTMAN_API_TOKEN=
JWT_SECRET= JWT_SECRET=
# --- Database --- # --- Database ---
DATABASE_URL=postgresql://hms:hms@postgres:5432/hms DATABASE_URL=postgresql+asyncpg://hms:hms@postgres:5432/hms
# --- Redis --- # --- Redis ---
REDIS_URL=redis://redis:6379/0 REDIS_URL=redis://redis:6379/0
+1 -1
View File
@@ -4,7 +4,7 @@ sqlalchemy[asyncio]>=2.0.30
asyncpg>=0.29.0 asyncpg>=0.29.0
aiosqlite>=0.20.0 aiosqlite>=0.20.0
redis>=5.0.0 redis>=5.0.0
pydantic>=2.7.0 pydantic[email]>=2.7.0
pydantic-settings>=2.3.0 pydantic-settings>=2.3.0
python-jose[cryptography]>=3.3.0 python-jose[cryptography]>=3.3.0
passlib[bcrypt]>=1.7.4 passlib[bcrypt]>=1.7.4
+1 -1
View File
@@ -28,7 +28,7 @@ services:
redis: redis:
condition: service_healthy condition: service_healthy
environment: environment:
- DATABASE_URL=${DATABASE_URL:-postgresql://hms:hms@postgres:5432/hms} - DATABASE_URL=${DATABASE_URL:-postgresql+asyncpg://hms:hms@postgres:5432/hms}
- REDIS_URL=${REDIS_URL:-redis://redis:6379/0} - REDIS_URL=${REDIS_URL:-redis://redis:6379/0}
- RENTMAN_API_TOKEN=${RENTMAN_API_TOKEN} - RENTMAN_API_TOKEN=${RENTMAN_API_TOKEN}
- JWT_SECRET=${JWT_SECRET} - JWT_SECRET=${JWT_SECRET}