This project is a simple full-stack web application built using FastAPI, a modern web framework for Python. It demonstrates how to combine API endpoints, static files (like CSS and JavaScript), and dynamic HTML templates using Jinja2
fastapi-website/
│
├── app/
│ ├── init.py
│ ├── main.py
│ ├── templates/
│ │ └── index.html
│ └── static/
│ ├── style.css
│ └── script.js
├── requirements.txt
└── run.py