gitex2026/aasd/sample.env
administrator 71b31b7c28 docs: restructure README into aasd/, add sample configs, update gitignore
- Move README.md and AGENT.md into aasd/ (app-specific docs)
- Create root README.md as lightweight repo overview (GITEX 2026 apps)
- Add aasd/sample.config.yaml with placeholder values for deployment
- Add aasd/sample.env with documented environment variables
- Update .gitignore to exclude config.yaml, binaries, reports/ and logs/
2026-04-29 07:56:00 +00:00

16 lines
480 B
Bash

# AASD — Environment Variables
#
# All configuration can be set via environment variables.
# These override values in config.yaml when both are present.
#
# Source this file after editing: source sample.env
# Server
export AASD_BASE_URL="https://aasd.example.com"
# SMTP (for email report delivery)
export SMTP_HOST="smtp.example.com"
export SMTP_PORT="587"
export SMTP_USERNAME="user@example.com"
export SMTP_PASSWORD="your-smtp-password"
export SMTP_FROM="user@example.com"