SmartCart/.env.example
Richard Nixon 058d01cb78 Add project setup: pyproject.toml, .gitignore, .env.example
Set up Python project with hatch build system and all core
dependencies: FastAPI, SQLAlchemy, Playwright, httpx, Streamlit,
Plotly, rapidfuzz, APScheduler.
2025-12-26 14:22:31 +00:00

18 lines
385 B
Text

DATABASE_URL=postgresql+asyncpg://smartcart:smartcart@localhost:5432/smartcart
DATABASE_URL_SYNC=postgresql://smartcart:smartcart@localhost:5432/smartcart
# SuperValu login (required for scraping)
SUPERVALU_EMAIL=
SUPERVALU_PASSWORD=
# Scheduler
SCRAPE_HOUR=22
SCRAPE_MINUTE=0
# API
API_HOST=0.0.0.0
API_PORT=8000
# Dashboard
DASHBOARD_PORT=8501
API_BASE_URL=http://localhost:8000