This is a minimal FastAPI application that accepts large file uploads (up to 500 MB) and serves them back via a generated download link. Old uploads are automatically cleaned up.
Install dependencies with pip:
pip install -r requirements.txtLaunch the server with uvicorn:
uvicorn app:app --reloadThe frontend is available at http://localhost:8000/ after starting the server.