- 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/
18 lines
640 B
YAML
18 lines
640 B
YAML
# AASD — Sample Configuration
|
|
#
|
|
# Copy this file to config.yaml in your deployment directory
|
|
# (e.g. /opt/aasd/config.yaml) and fill in your values.
|
|
#
|
|
# All values can also be set via environment variables — see sample.env.
|
|
|
|
ai:
|
|
provider_url: "https://api.deepseek.com"
|
|
api_key: "sk-your-deepseek-api-key-here" # DeepSeek API key for AI narratives
|
|
model: "deepseek-chat"
|
|
|
|
server:
|
|
base_url: "https://aasd.example.com" # Public URL for QR codes & email links
|
|
|
|
admin:
|
|
username: "admin" # Admin dashboard username
|
|
password: "your-secure-password-here" # Admin dashboard password
|