feature/client-template #2

Merged
homeburger merged 27 commits from feature/client-template into main 2026-03-14 23:10:46 -05:00
2 changed files with 11 additions and 1 deletions
Showing only changes of commit dd8864c56c - Show all commits

View File

@@ -6,7 +6,7 @@
} }
}, },
"ConnectionStrings": { "ConnectionStrings": {
"DefaultConnection": "Host=localhost;Port=5432;Database=devTest1;Username=devuser;Password=admin5" "DefaultConnection": "Host=agologum-net;Port=5432;Database=agologum;Username=agologum;Password=${POSTGRES_PASSWORD}"
}, },
"AllowedHosts": "*", "AllowedHosts": "*",
"https_port": 443 "https_port": 443

View File

@@ -1,8 +1,18 @@
version: "3.9"
services: services:
agologum-api: agologum-api:
image: git.vxbard.net/homeburger/agologum-api:latest image: git.vxbard.net/homeburger/agologum-api:latest
container_name: agologum-api container_name: agologum-api
restart: always restart: always
environment:
ConnectionStrings__DefaultConnection: Host=agologum-db;Port=5432;Database=agologum;Username=agologum;Password=${POSTGRES_PASSWORD}
ports: ports:
- "5000:5000" - "5000:5000"
networks:
- agologum-net
networks:
agologum-net:
external: true