Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 546 Bytes

File metadata and controls

28 lines (22 loc) · 546 Bytes

Website built with FastAPI

Tools used for backend

  • FastAPI - backend logic
  • SQLite - database
  • SQLalchemy - database management

Tools used for frontend

  • Vanila JS (with HTML and CSS) - frontend
  • Jinja templates (with HTML) - for creating HTML templates

To enter virtual environment and install dependencies

python -m venv .venv
source .venv/bin/activate
make build

To run backend

make run

To clear db after run (recommended after every run)

make clear