├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── LICENSE.md ├── README.md └── cosmosdb-with-fastapi ├── .env ├── main.py ├── models.py └── routes.py /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmosdb-python-fastapi/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmosdb-python-fastapi/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmosdb-python-fastapi/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmosdb-python-fastapi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmosdb-python-fastapi/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmosdb-python-fastapi/HEAD/README.md -------------------------------------------------------------------------------- /cosmosdb-with-fastapi/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmosdb-python-fastapi/HEAD/cosmosdb-with-fastapi/.env -------------------------------------------------------------------------------- /cosmosdb-with-fastapi/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmosdb-python-fastapi/HEAD/cosmosdb-with-fastapi/main.py -------------------------------------------------------------------------------- /cosmosdb-with-fastapi/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmosdb-python-fastapi/HEAD/cosmosdb-with-fastapi/models.py -------------------------------------------------------------------------------- /cosmosdb-with-fastapi/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmosdb-python-fastapi/HEAD/cosmosdb-with-fastapi/routes.py --------------------------------------------------------------------------------