├── .codecov.yml ├── .dockerignore ├── .flake8 ├── .gitattributes ├── .github └── workflows │ └── github-actions.yml ├── .gitignore ├── Dockerfile ├── README.md ├── alembic.ini ├── alembic ├── env.py ├── script.py.mako └── versions │ ├── 1df6ff5028e4_change_uuid_to_str_for_pks.py │ ├── b77bb559f678_init_message_and_interaction.py │ └── c90a349beb8b_enhanced_datetime_fields.py ├── docker-compose.yaml ├── ifsguid ├── __init__.py ├── config.py ├── crud.py ├── database.py ├── endpoints.py ├── main.py ├── models.py ├── modules.py ├── schemas.py └── utils.py ├── nginx ├── Dockerfile ├── nginx.conf └── static │ └── error_pages │ ├── custom_404.html │ └── style.css ├── poetry.lock ├── pyproject.toml ├── start_app.sh ├── start_app_production.sh └── tests ├── __init__.py ├── client.py ├── conftest.py ├── test_crud.py └── test_endpoints.py /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/.dockerignore -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/github-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/.github/workflows/github-actions.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/README.md -------------------------------------------------------------------------------- /alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/alembic.ini -------------------------------------------------------------------------------- /alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/alembic/env.py -------------------------------------------------------------------------------- /alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/alembic/script.py.mako -------------------------------------------------------------------------------- /alembic/versions/1df6ff5028e4_change_uuid_to_str_for_pks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/alembic/versions/1df6ff5028e4_change_uuid_to_str_for_pks.py -------------------------------------------------------------------------------- /alembic/versions/b77bb559f678_init_message_and_interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/alembic/versions/b77bb559f678_init_message_and_interaction.py -------------------------------------------------------------------------------- /alembic/versions/c90a349beb8b_enhanced_datetime_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/alembic/versions/c90a349beb8b_enhanced_datetime_fields.py -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /ifsguid/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ifsguid/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/ifsguid/config.py -------------------------------------------------------------------------------- /ifsguid/crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/ifsguid/crud.py -------------------------------------------------------------------------------- /ifsguid/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/ifsguid/database.py -------------------------------------------------------------------------------- /ifsguid/endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/ifsguid/endpoints.py -------------------------------------------------------------------------------- /ifsguid/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/ifsguid/main.py -------------------------------------------------------------------------------- /ifsguid/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/ifsguid/models.py -------------------------------------------------------------------------------- /ifsguid/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/ifsguid/modules.py -------------------------------------------------------------------------------- /ifsguid/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/ifsguid/schemas.py -------------------------------------------------------------------------------- /ifsguid/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/ifsguid/utils.py -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /nginx/static/error_pages/custom_404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/nginx/static/error_pages/custom_404.html -------------------------------------------------------------------------------- /nginx/static/error_pages/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/nginx/static/error_pages/style.css -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/pyproject.toml -------------------------------------------------------------------------------- /start_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/start_app.sh -------------------------------------------------------------------------------- /start_app_production.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/start_app_production.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/tests/client.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/tests/test_crud.py -------------------------------------------------------------------------------- /tests/test_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agn-7/ifsguid-backend/HEAD/tests/test_endpoints.py --------------------------------------------------------------------------------