Set up Python project with hatch build system and all core dependencies: FastAPI, SQLAlchemy, Playwright, httpx, Streamlit, Plotly, rapidfuzz, APScheduler.
18 lines
385 B
Text
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
|