Files
TSYSDevStack/SupportStack/demo/demo.env
TSYSDevStack Team 0785722981 feat: 🚀 Initialize TSYS Developer Support Stack demo environment
- Add comprehensive Docker Compose configuration with 16 developer services
- Configure Homepage dashboard with service discovery and grouping
- Set up environment configuration for demo deployment
- Include project documentation (PRD, README, User Guide, Agent guidelines)
- Establish foundation for developer tooling stack with proper networking and security

Services include developer tools (Homepage, Atuin, Wakapi, ArchiveBox, Tube Archivist, MailHog),
infrastructure (PostgreSQL, Elasticsearch, Redis, Docker Socket Proxy),
monitoring (InfluxDB, Grafana), and documentation (Draw.io, Kroki).
2025-11-13 17:35:34 -05:00

36 lines
722 B
Bash

# TSYS Developer Support Stack - Environment Configuration
# Copy this file to .env and customize for your system
# User/Group ID for container processes
# Run 'id -u' and 'id -g' on your host to get correct values
PUID=1000
PGID=1000
# Network Configuration
HOST_IP=192.168.3.6
NETWORK_SUBNET=192.168.3.0/24
# Demo Environment Passwords
# CHANGE THESE IN PRODUCTION!
DEMO_PASSWORD=demo_password
# Service Ports
HOMEPAGE_PORT=4000
ATUIN_PORT=4001
WAKAPI_PORT=4002
ARCHIVEBOX_PORT=4003
MAILHOG_PORT=4005
PIHOLE_PORT=4006
PORTAINER_PORT=4007
INFLUXDB_PORT=4008
GRAFANA_PORT=4009
DRAWIO_PORT=4010
KROKI_PORT=4011
DOCKER_PROXY_PORT=2375
# Timezone
TZ=UTC
# Feature Flags
ENABLE_TELEMETRY=false
ENABLE_DEBUG_LOGGING=false