# Server Configuration APP__SERVER__HOST=127.0.0.1 APP__SERVER__PORT=9999 APP__SERVER__WORKERS=4 # Templates Configuration APP__TEMPLATES__DIR=./src/views # Authentication JWT_SECRET=your_jwt_secret_key_change_this_in_production JWT_EXPIRATION_HOURS=24 # This must be at least 32 bytes long and should be a secure random string SECRET_KEY=01234567890123456789012345678901 # OAuth Configuration - Gitea GITEA_CLIENT_ID=your_client_id GITEA_CLIENT_SECRET=your_client_secret GITEA_INSTANCE_URL=https://your-gitea-instance.com APP_URL=http://localhost:9999 # Database Configuration APP__DATABASE__URL=postgres://user:password@localhost/hostbasket APP__DATABASE__POOL_SIZE=5 # Logging RUST_LOG=debug # Application Environment APP_ENV=development APP_CONFIG=config/local.toml