20 lines
545 B
Plaintext
20 lines
545 B
Plaintext
# .env - Environment Configuration for poster-bash
|
|
# Copy this file to .env and fill in your values
|
|
|
|
# IGDB API Credentials
|
|
# Get your credentials from: https://api-docs.igdb.com/#account-creation
|
|
IGDB_CLIENT_ID="your_client_id_here"
|
|
IGDB_CLIENT_SECRET="your_client_secret_here"
|
|
|
|
# Scan Directories
|
|
# SCAN_DIR: Directory to scan in normal mode
|
|
# TEST_DIR: Directory to scan in test mode (--test-run)
|
|
|
|
SCAN_DIR="/media/Games"
|
|
TEST_DIR="/test-games"
|
|
|
|
# Optional: Override default settings
|
|
# PROGRESS_MODE="both"
|
|
# LOG_LEVEL="info"
|
|
# RETRY_COUNT=3
|