Institutionalize the product identity ahead of public release: - Java package: net.siegeln.cameleer.saas → io.cameleer.saas (109 files) - Maven groupId: net.siegeln.cameleer → io.cameleer - Public image defaults: gitea.siegeln.net/cameleer/ → registry.cameleer.io/cameleer/ - Updated docs (architecture, user-manual, HOWTO, runtime-loader README) - Updated CLAUDE.md path references Internal build infra (CI workflows, .gitmodules, npm registry, Maven repo) intentionally kept at gitea.siegeln.net — code stays on internal Gitea. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
56 lines
1.6 KiB
Plaintext
56 lines
1.6 KiB
Plaintext
# Cameleer SaaS — Environment Configuration
|
|
# Copy to .env and fill in values for production
|
|
|
|
# Image version
|
|
VERSION=latest
|
|
|
|
# Public access
|
|
PUBLIC_HOST=localhost
|
|
PUBLIC_PROTOCOL=https
|
|
# Auth domain (Logto). Defaults to PUBLIC_HOST for single-domain setups.
|
|
# Set to a separate subdomain (e.g. auth.cameleer.io) to split auth from the app.
|
|
# AUTH_HOST=localhost
|
|
|
|
# Ports
|
|
HTTP_PORT=80
|
|
HTTPS_PORT=443
|
|
LOGTO_CONSOLE_PORT=3002
|
|
|
|
# PostgreSQL
|
|
POSTGRES_USER=cameleer
|
|
POSTGRES_PASSWORD=change_me_in_production
|
|
POSTGRES_DB=cameleer_saas
|
|
|
|
# ClickHouse
|
|
CLICKHOUSE_PASSWORD=change_me_in_production
|
|
|
|
# Admin user (created by bootstrap)
|
|
# In SaaS mode, this must be an email address (primary user identity).
|
|
# In standalone mode, any username is accepted.
|
|
SAAS_ADMIN_USER=admin@example.com
|
|
SAAS_ADMIN_PASS=change_me_in_production
|
|
|
|
# SMTP / email connector configuration is managed at runtime via the vendor
|
|
# admin UI (Email Connector page at /vendor/email). No SMTP env vars needed.
|
|
|
|
# TLS (leave empty for self-signed)
|
|
# NODE_TLS_REJECT=0 # Set to 1 when using real certificates
|
|
# CERT_FILE=
|
|
# KEY_FILE=
|
|
# CA_FILE=
|
|
|
|
# Vendor account (optional)
|
|
VENDOR_SEED_ENABLED=false
|
|
# VENDOR_USER=vendor
|
|
# VENDOR_PASS=change_me
|
|
|
|
# Docker socket GID (run: stat -c '%g' /var/run/docker.sock)
|
|
# DOCKER_GID=0
|
|
|
|
# Docker images (override for custom registries)
|
|
# TRAEFIK_IMAGE=registry.cameleer.io/cameleer/cameleer-traefik
|
|
# POSTGRES_IMAGE=registry.cameleer.io/cameleer/cameleer-postgres
|
|
# CLICKHOUSE_IMAGE=registry.cameleer.io/cameleer/cameleer-clickhouse
|
|
# LOGTO_IMAGE=registry.cameleer.io/cameleer/cameleer-logto
|
|
# CAMELEER_IMAGE=registry.cameleer.io/cameleer/cameleer-saas
|