fetch_ml/.env.example
Jeremie Fraeys cd5640ebd2 Slim and secure: move scripts, clean configs, remove secrets
- Move ci-test.sh and setup.sh to scripts/
- Trim docs/src/zig-cli.md to current structure
- Replace hardcoded secrets with placeholders in configs
- Update .gitignore to block .env*, secrets/, keys, build artifacts
- Slim README.md to reflect current CLI/TUI split
- Add cleanup trap to ci-test.sh
- Ensure no secrets are committed
2025-12-07 13:57:51 -05:00

17 lines
No EOL
444 B
Text

# Fetch ML Environment Variables
# Copy this file to .env and fill with real values; .env is gitignored
# CLI/TUI connection
FETCH_ML_CLI_HOST="127.0.0.1"
FETCH_ML_CLI_USER="dev_user"
FETCH_ML_CLI_BASE="/tmp/ml-experiments"
FETCH_ML_CLI_PORT="9101"
FETCH_ML_CLI_API_KEY="your-api-key-here"
# Redis (if used)
REDIS_URL="redis://localhost:6379"
REDIS_PASSWORD="your-redis-password"
# Optional: TLS (if enabled)
TLS_CERT_FILE=""
TLS_KEY_FILE=""