# OpenFUT Core — environment configuration # Copy this file to .env and adjust values for your setup. # Server listen address (host:port) LISTEN_ADDR=127.0.0.1:8080 # SQLite database path (relative to the working directory) DATABASE_URL=sqlite://openfut.db # Directory containing card, pack, objective, and SBC data files DATA_DIR=data # Max SQLite connection pool size DB_MAX_CONNECTIONS=5 # Log level for the application # Options: error, warn, info, debug, trace # You can also use module-level filters: openfut_core=debug,tower_http=info RUST_LOG=openfut_core=info,tower_http=debug