Files
funnywolfandCopilot b8a28a2998 Prepare v0.4.1 release
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>
2026-06-28 22:52:55 +08:00

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