chore: moving towards agentic development
Some checks failed
Backend CI/CD / build_and_deploy (push) Has been cancelled
Frontend CI/CD / build_and_deploy (push) Has been cancelled

This commit is contained in:
2026-04-24 21:12:26 -04:00
parent df3e602015
commit b6eb692c27
179 changed files with 2880 additions and 866 deletions

39
docker-compose.yml Normal file
View File

@@ -0,0 +1,39 @@
services:
postgres:
image: postgres:latest
environment:
POSTGRES_USER: sa
POSTGRES_PASSWORD: P@ssword123!
POSTGRES_DB: socialize
ports:
- "5433:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U sa -d socialize"]
interval: 5s
timeout: 5s
retries: 20
api:
build:
context: .
dockerfile: backend/src/Socialize.Api/Dockerfile
environment:
ASPNETCORE_ENVIRONMENT: Development
ASPNETCORE_URLS: http://0.0.0.0:8080
ConnectionStrings__PostgresConnection: Host=postgres;Port=5432;Database=socialize;Username=sa;Password=P@ssword123!
depends_on:
postgres:
condition: service_healthy
expose:
- "8080"
web:
build:
context: .
dockerfile: frontend/Dockerfile
depends_on:
- api
ports:
- "8080:80"
volumes:
- ./deploy/caddy/Caddyfile:/etc/caddy/Caddyfile:ro