Initial commit

This commit is contained in:
CupOfOwls
2025-05-26 11:57:51 -06:00
commit 9a19218bc3
21 changed files with 3679 additions and 0 deletions

22
.env.example Normal file
View File

@@ -0,0 +1,22 @@
# 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