├── .gitignore ├── README.md ├── articles └── eng.md ├── beanie_fastapi_demo ├── __init__.py ├── app_factory.py ├── exceptions.py ├── models.py ├── routes.py └── run.py ├── docker-compose-mongodb.yml ├── poetry.lock ├── pyproject.toml ├── run.sh └── tests ├── __init__.py └── test_beanie_fastapi_demo.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman-right/beanie-fastapi-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman-right/beanie-fastapi-demo/HEAD/README.md -------------------------------------------------------------------------------- /articles/eng.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman-right/beanie-fastapi-demo/HEAD/articles/eng.md -------------------------------------------------------------------------------- /beanie_fastapi_demo/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.1.0' 2 | -------------------------------------------------------------------------------- /beanie_fastapi_demo/app_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman-right/beanie-fastapi-demo/HEAD/beanie_fastapi_demo/app_factory.py -------------------------------------------------------------------------------- /beanie_fastapi_demo/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman-right/beanie-fastapi-demo/HEAD/beanie_fastapi_demo/exceptions.py -------------------------------------------------------------------------------- /beanie_fastapi_demo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman-right/beanie-fastapi-demo/HEAD/beanie_fastapi_demo/models.py -------------------------------------------------------------------------------- /beanie_fastapi_demo/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman-right/beanie-fastapi-demo/HEAD/beanie_fastapi_demo/routes.py -------------------------------------------------------------------------------- /beanie_fastapi_demo/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman-right/beanie-fastapi-demo/HEAD/beanie_fastapi_demo/run.py -------------------------------------------------------------------------------- /docker-compose-mongodb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman-right/beanie-fastapi-demo/HEAD/docker-compose-mongodb.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman-right/beanie-fastapi-demo/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman-right/beanie-fastapi-demo/HEAD/pyproject.toml -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman-right/beanie-fastapi-demo/HEAD/run.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_beanie_fastapi_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roman-right/beanie-fastapi-demo/HEAD/tests/test_beanie_fastapi_demo.py --------------------------------------------------------------------------------