# MyAudio-2-RawTxt config example (safe to commit)
# Copy to config.env for local use. config.env is git-ignored.

# Root project directory
PROJECT_ROOT="/path/to/MyAudio-2-RawTxt"

# Folders
DROP_DIR="${PROJECT_ROOT}/_00_To_Be_Processed"
FINAL_DIR="${PROJECT_ROOT}/_01_Processed"
OUT_DIR="${PROJECT_ROOT}/_02_Transcripts"
LOG_DIR="${PROJECT_ROOT}/_LOGS"
MODEL_DIR="${PROJECT_ROOT}/_MODELS"
TEMP_DIR="${PROJECT_ROOT}/_temp"

# Model
MODEL_FILE="${MODEL_DIR}/ggml-medium.bin"

# Output organization
JSON_DIR="${OUT_DIR}/json_files"

# Feature toggles (0/1)
ENABLE_JSON=1
ENABLE_TIMESTAMPS=0
ENABLE_WORDCOUNT=1
ENABLE_FOOTER=1
DELETE_TEMP_WAV_ON_SUCCESS=1
DELETE_TEMP_WAV_ON_FAIL=0

# Optional WordPress publishing credentials.
# Prefer shell/launchd EnvironmentVariables for these; never commit real values.
# WP_SITE_URL="https://example.com"
# WP_USERNAME="wordpress-user"
# WP_APP_PASSWORD="replace-with-local-app-password"
