Files
foxhunt/fxt/config.toml.example
jgrusewski 2da5bafc0e refactor: rename tli→fxt, delete legacy scripts/RunPod/deploy artifacts
- Rename tli/ directory to fxt/, update package + binary name to "fxt"
- Replace all `use tli::` → `use fxt::` across 52 Rust files
- Update build.rs proto paths (tli/proto → fxt/proto) in 6 services
- Update Dockerfiles, CI workflows, deploy.sh for new paths
- Delete ~170 legacy shell scripts (kept 15 essential ones)
- Delete RunPod Python client (runpod/), tests (tests/runpod/)
- Delete foxhunt-deploy crate (RunPod-only deployment tool)
- Delete terraform/runpod/ (moved to Scaleway)
- Delete ML Python hyperopt scripts (replaced by Rust Argmin PSO)
- Delete .gitlab-ci.yml (using GitHub + Gitea)
- Remove foxhunt-deploy from workspace members

504 files changed, -74,355 lines of legacy code removed.
Workspace compiles clean (0 errors, 0 warnings).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-24 10:32:21 +01:00

41 lines
1.2 KiB
Plaintext

# TLI Configuration File Example
# Copy this file to ~/.foxhunt/config.toml to use it
#
# Configuration precedence (highest to lowest):
# 1. CLI arguments (--api-gateway-url, --log-level, --token-storage)
# 2. Environment variables (API_GATEWAY_URL, TLI_LOG_LEVEL, TLI_TOKEN_STORAGE)
# 3. Config file (~/.foxhunt/config.toml)
# 4. Hardcoded defaults
#
# To use this configuration file:
# mkdir -p ~/.foxhunt
# cp tli/config.toml.example ~/.foxhunt/config.toml
# # Edit ~/.foxhunt/config.toml with your settings
# API Gateway URL
# The URL where the Foxhunt API Gateway is running
# Default: http://localhost:50051
api_gateway_url = "http://localhost:50051"
# Log level
# Controls verbosity of logging output
# Options: trace, debug, info, warn, error
# Default: info
log_level = "info"
# Token storage backend
# Where to store authentication tokens
# Options: keyring (OS keyring, recommended), file (plain text file - NOT SECURE)
# Default: keyring
token_storage = "keyring"
# Example custom configurations:
# For production API Gateway:
# api_gateway_url = "https://api.foxhunt.example.com:50051"
#
# For debugging:
# log_level = "debug"
#
# For development (less secure):
# token_storage = "file"