mydatascraper/competitor_compare
0
1# Database
2DATABASE_URL=postgresql+asyncpg://postgres:postgres@localhost:5432/grocery_prices
3DATABASE_URL_SYNC=postgresql+psycopg2://postgres:postgres@localhost:5432/grocery_prices
4
5# Redis
6REDIS_URL=redis://localhost:6379/0
7
8# API
9API_TITLE=Grocery Price Intelligence API
10API_VERSION=1.0.0
11API_KEY_HEADER=X-API-Key
12MASTER_API_KEY=gprice_mvp_demo_key_2024
13
14# AWS S3
15AWS_ACCESS_KEY_ID=your-key
16AWS_SECRET_ACCESS_KEY=your-secret
17AWS_REGION=us-east-1
18S3_BUCKET=grocery-price-exports
19
20# GCS
21GCS_BUCKET=grocery-price-exports
22GCS_CREDENTIALS_PATH=./gcs-credentials.json
23
24# Export
25EXPORT_FORMAT=parquet,csv
26EXPORT_PATH=./exports