├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app ├── __init__.py ├── main.py └── server │ ├── app.py │ ├── database.py │ ├── models │ └── student.py │ └── routes │ └── student.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | venv/ 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youngestdev/async-fastapi-mongo/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youngestdev/async-fastapi-mongo/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youngestdev/async-fastapi-mongo/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youngestdev/async-fastapi-mongo/HEAD/app/main.py -------------------------------------------------------------------------------- /app/server/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youngestdev/async-fastapi-mongo/HEAD/app/server/app.py -------------------------------------------------------------------------------- /app/server/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youngestdev/async-fastapi-mongo/HEAD/app/server/database.py -------------------------------------------------------------------------------- /app/server/models/student.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youngestdev/async-fastapi-mongo/HEAD/app/server/models/student.py -------------------------------------------------------------------------------- /app/server/routes/student.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youngestdev/async-fastapi-mongo/HEAD/app/server/routes/student.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Youngestdev/async-fastapi-mongo/HEAD/requirements.txt --------------------------------------------------------------------------------