Ambient display for your extra monitor. Clock, timer, and Pomodoro to keep you focused.
cd api
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install -r requirements.txtCreate .env in api/:
DATABASE_URL=postgresql://user:password@localhost:5432/dbname
ENVIRONMENT=development
PRODUCTION_DOMAIN=https://abc.com,https://www.abc.comInit DB:
python init_db.pyRun:
uvicorn main:app --reloadcd client
npm install
npm run devCreate .env in client/:
VITE_API_URL=http://127.0.0.1:8000/Stack: FastAPI, PostgreSQL, React, Vite, Tailwind, MUI