mirror of
https://github.com/FunnyWolf/agentic-soc-platform.git
synced 2026-08-22 13:12:56 +02:00
Map v0.4.1 to its release notes, update the compose package image template, and advance the documentation submodule. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
44 lines
1.1 KiB
Bash
44 lines
1.1 KiB
Bash
# Images
|
|
ASP_BACKEND_IMAGE=ghcr.io/funnywolf/agentic-soc-platform/asp-backend:0.4.1
|
|
ASP_FRONTEND_IMAGE=ghcr.io/funnywolf/agentic-soc-platform/asp-frontend:0.4.1
|
|
|
|
# ASP HTTPS entrypoint. Nginx binds to all host interfaces by default.
|
|
ASP_BIND=0.0.0.0
|
|
ASP_HTTPS_PORT=443
|
|
ASP_PUBLIC_HOSTNAME=localhost
|
|
# Extra SAN entries for the generated self-signed certificate, for example:
|
|
# ASP_CERT_EXTRA_SAN=DNS:asp.example.com,IP:10.0.0.10
|
|
ASP_CERT_EXTRA_SAN=
|
|
|
|
# HTTP management UIs.
|
|
ASP_MANAGEMENT_BIND=0.0.0.0
|
|
ASP_REDIS_UI_PORT=8001
|
|
ASP_RUSTFS_CONSOLE_PORT=9001
|
|
|
|
# Django application settings.
|
|
DJANGO_SECRET_KEY=change-me-to-a-random-32-byte-minimum-secret
|
|
DJANGO_DEBUG=false
|
|
DJANGO_ALLOWED_HOSTS=*
|
|
DJANGO_LOG_LEVEL=INFO
|
|
DJANGO_LOG_FORMAT=text
|
|
|
|
# PostgreSQL.
|
|
POSTGRES_DB=asp
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=change-me-postgres-password
|
|
POSTGRES_HOST=postgres
|
|
POSTGRES_PORT=5432
|
|
|
|
# Redis.
|
|
REDIS_HOST=redis-stack
|
|
REDIS_PORT=6379
|
|
REDIS_DB=1
|
|
REDIS_PASSWORD=change-me-redis-password
|
|
|
|
# RustFS / S3-compatible object storage.
|
|
RUSTFS_ENDPOINT_URL=http://rustfs:9000
|
|
RUSTFS_ACCESS_KEY=asp
|
|
RUSTFS_SECRET_KEY=change-me-rustfs-password
|
|
RUSTFS_BUCKET=asp
|
|
RUSTFS_REGION=us-east-1
|