- 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/
16 lines
480 B
Bash
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"
|