gitextract_0gflb5ec/ ├── .dockerignore ├── .github/ │ └── workflows/ │ └── python-app.yml ├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── TODO.md ├── __init__.py ├── alembic.ini ├── api.Dockerfile ├── app/ │ ├── __init__.py │ ├── api/ │ │ ├── __init__.py │ │ ├── dependencies/ │ │ │ ├── __init__.py │ │ │ ├── auth_utils.py │ │ │ ├── constants.py │ │ │ ├── mail_service.py │ │ │ └── repositories.py │ │ ├── router.py │ │ └── routes/ │ │ ├── __init__.py │ │ ├── auth/ │ │ │ ├── __init__.py │ │ │ └── auth.py │ │ └── documents/ │ │ ├── __init__.py │ │ ├── document.py │ │ ├── document_organization.py │ │ ├── document_sharing.py │ │ ├── documents_metadata.py │ │ └── notify.py │ ├── core/ │ │ ├── __init__.py │ │ ├── config.py │ │ └── exceptions.py │ ├── db/ │ │ ├── __init__.py │ │ ├── models.py │ │ ├── repositories/ │ │ │ ├── __init__.py │ │ │ ├── auth/ │ │ │ │ ├── __init__.py │ │ │ │ └── auth.py │ │ │ └── documents/ │ │ │ ├── __init__.py │ │ │ ├── document_organization.py │ │ │ ├── document_sharing.py │ │ │ ├── documents.py │ │ │ ├── documents_metadata.py │ │ │ └── notify.py │ │ └── tables/ │ │ ├── __init__.py │ │ ├── auth/ │ │ │ ├── __init__.py │ │ │ └── auth.py │ │ ├── base_class.py │ │ └── documents/ │ │ ├── __init__.py │ │ ├── document_sharing.py │ │ ├── documents_metadata.py │ │ └── notify.py │ ├── docs/ │ │ ├── DocFlow-DocumentManagementAPI.postman_collection.json │ │ ├── commands/ │ │ │ ├── docker.md │ │ │ └── postgres.md │ │ ├── features/ │ │ │ ├── postman.md │ │ │ ├── preview.md │ │ │ ├── sharing.md │ │ │ └── upload.md │ │ ├── issues.txt │ │ └── setup.md │ ├── logs/ │ │ ├── __init__.py │ │ └── logger.py │ ├── main.py │ ├── schemas/ │ │ ├── __init__.py │ │ ├── auth/ │ │ │ ├── __init__.py │ │ │ ├── auth.py │ │ │ └── bands.py │ │ └── documents/ │ │ ├── __init__.py │ │ ├── bands.py │ │ ├── document_sharing.py │ │ └── documents_metadata.py │ └── scripts/ │ ├── create_database.sql │ └── init_bucket.py ├── docker-compose.override.yml ├── docker-compose.prod.yml ├── docker-compose.yml ├── hello.txt ├── migrations/ │ ├── __init__.py │ ├── env.py │ ├── script.py.mako │ └── versions/ │ ├── 2a02384ab925_initial_almebic.py │ └── __init__.py ├── nginx/ │ └── nginx.conf └── requirements/ └── api.txt