# Google OAuth 2.0 Credentials
# Create these in Google Cloud Console
GOOGLE_CLIENT_ID=""
GOOGLE_CLIENT_SECRET=""
# OAuth Redirect URI
# Must match the URI configured in Google Cloud Console
REDIRECT_URI="http://localhost:4100/code"
# OAuth Refresh Token
# This will be obtained after initial OAuth flow
GOOGLE_REFRESH_TOKEN=""
# Server Configuration
PORT=4100
# Optional Configurations
# Uncomment and modify as needed
#LOG_LEVEL="info"
#DEFAULT_TIMEZONE="Australia/Brisbane"
#MAX_RESULTS_LIMIT=50