You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
767 B
Bash
23 lines
767 B
Bash
# Kroger API Configuration
|
|
# Get these from https://developer.kroger.com/
|
|
|
|
# Your Kroger API client ID (required)
|
|
KROGER_CLIENT_ID=your_client_id_here
|
|
|
|
# Your Kroger API client secret (required)
|
|
KROGER_CLIENT_SECRET=your_client_secret_here
|
|
|
|
# OAuth redirect URI - must match what's registered in Kroger Developer Portal
|
|
# Default for local development:
|
|
KROGER_REDIRECT_URI=http://localhost:8000/callback
|
|
|
|
# Optional: Default zip code for location searches
|
|
# This will be used when no zip code is specified in searches
|
|
KROGER_USER_ZIP_CODE=90274
|
|
|
|
# Example of other common zip codes:
|
|
# KROGER_USER_ZIP_CODE=10001 # Manhattan, NY
|
|
# KROGER_USER_ZIP_CODE=90210 # Beverly Hills, CA
|
|
# KROGER_USER_ZIP_CODE=60601 # Chicago, IL
|
|
# KROGER_USER_ZIP_CODE=30309 # Atlanta, GA
|