├── .dockerignore ├── .github └── workflows │ ├── code-quality.yml │ └── python-app.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── Dockerfile ├── README.md ├── alembic.ini ├── app ├── .env.example ├── __init__.py ├── api │ ├── __init__.py │ ├── auth.py │ ├── aws_s3.py │ ├── cc.py │ ├── files.py │ ├── guides.py │ ├── issues.py │ ├── items.py │ ├── parts.py │ ├── settings.py │ ├── statistics.py │ ├── tags.py │ ├── users.py │ ├── users_groups.py │ └── users_permissions.py ├── config.py ├── crud │ ├── __init__.py │ ├── cc_crud.py │ ├── crud_auth.py │ ├── crud_events.py │ ├── crud_files.py │ ├── crud_groups.py │ ├── crud_guides.py │ ├── crud_issues.py │ ├── crud_items.py │ ├── crud_parts.py │ ├── crud_permission.py │ ├── crud_qr.py │ ├── crud_settings.py │ ├── crud_statistics.py │ ├── crud_tags.py │ └── crud_users.py ├── db.py ├── example.env ├── main.py ├── models │ ├── __init__.py │ ├── models.py │ └── shared_models.py ├── schemas │ ├── __init__.py │ ├── requests.py │ ├── responses.py │ └── schemas.py ├── service │ ├── __init__.py │ ├── auth.py │ ├── bearer_auth.py │ ├── company_details.py │ ├── default_settings.py │ ├── event.py │ ├── health_check.py │ ├── helpers.py │ ├── mentions.py │ ├── notification_email.py │ ├── notification_sms.py │ ├── notifications.py │ ├── password.py │ ├── scheduler.py │ └── tenants.py ├── storage │ ├── __init__.py │ ├── aws_s3.py │ ├── base.py │ └── s3.py └── utils │ ├── __init__.py │ └── decorators.py ├── commands ├── __init__.py └── db_backup │ ├── __init__.py │ ├── backups │ └── .gitkeep │ ├── manage_postgres_db.py │ └── readme.md ├── compose.yaml ├── dev.Dockerfile ├── docs ├── docs.md └── img │ └── FK_Tasks_Users.png ├── migrations ├── __init__.py ├── env.py ├── script.py.mako └── versions │ ├── 2022_07_18_1509-d6ba8c13303e_initial_shared.py │ ├── 2022_08_29_1620-80726328353e_add_tables_users_roles_permissions.py │ ├── 2022_08_29_1621-338496320c4d_add_permissions_entries.py │ ├── 2023_04_26_1750-055684700394_add_users_group.py │ ├── 2023_04_26_1752-a1b0cf6b2fbb_add_settings_table.py │ ├── 2023_04_26_1753-b2e42964ad3f_add_files_table.py │ ├── 2023_04_26_1754-38e5957fa66f_add_items_table.py │ ├── 2023_04_26_1755-40bde431a56f_add_guides_table.py │ ├── 2023_04_26_1757-7283939d25ad_add_qr_code_table.py │ ├── 2023_04_26_1759-249aba91b072_add_issues_table.py │ ├── 2023_04_26_1800-8899525de86a_add_events_table.py │ ├── 2023_04_26_1801-3e3981bb512d_add_tags_table.py │ ├── 2023_04_26_1814-debb10a33f57_add_videos_table.py │ ├── 2023_04_27_1418-cec65e1bd0de_add_parts_table.py │ └── 2023_07_10_1708-13be30248d7d_add_qr_code_scans.py ├── poetry.lock ├── prepush.sh ├── pyproject.toml ├── pytest.ini ├── requirements-dev.txt ├── requirements.txt └── tests ├── __init__.py ├── api_responses ├── GUS │ ├── gus_get_by_nip.json │ └── gus_get_by_nip_no_data_found.json └── rejestr_io_get_by_nip.json ├── conftest.py ├── csv_import_files └── import_users.csv ├── feature ├── test_auth.py ├── test_files.py ├── test_ideas.py ├── test_main.py └── test_user.py ├── files └── postbox.png └── unit ├── test_password.py └── test_s3.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/code-quality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/.github/workflows/code-quality.yml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/README.md -------------------------------------------------------------------------------- /alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/alembic.ini -------------------------------------------------------------------------------- /app/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/.env.example -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/api/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/api/auth.py -------------------------------------------------------------------------------- /app/api/aws_s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/api/aws_s3.py -------------------------------------------------------------------------------- /app/api/cc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/api/cc.py -------------------------------------------------------------------------------- /app/api/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/api/files.py -------------------------------------------------------------------------------- /app/api/guides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/api/guides.py -------------------------------------------------------------------------------- /app/api/issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/api/issues.py -------------------------------------------------------------------------------- /app/api/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/api/items.py -------------------------------------------------------------------------------- /app/api/parts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/api/parts.py -------------------------------------------------------------------------------- /app/api/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/api/settings.py -------------------------------------------------------------------------------- /app/api/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/api/statistics.py -------------------------------------------------------------------------------- /app/api/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/api/tags.py -------------------------------------------------------------------------------- /app/api/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/api/users.py -------------------------------------------------------------------------------- /app/api/users_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/api/users_groups.py -------------------------------------------------------------------------------- /app/api/users_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/api/users_permissions.py -------------------------------------------------------------------------------- /app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/config.py -------------------------------------------------------------------------------- /app/crud/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/crud/cc_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/crud/cc_crud.py -------------------------------------------------------------------------------- /app/crud/crud_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/crud/crud_auth.py -------------------------------------------------------------------------------- /app/crud/crud_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/crud/crud_events.py -------------------------------------------------------------------------------- /app/crud/crud_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/crud/crud_files.py -------------------------------------------------------------------------------- /app/crud/crud_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/crud/crud_groups.py -------------------------------------------------------------------------------- /app/crud/crud_guides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/crud/crud_guides.py -------------------------------------------------------------------------------- /app/crud/crud_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/crud/crud_issues.py -------------------------------------------------------------------------------- /app/crud/crud_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/crud/crud_items.py -------------------------------------------------------------------------------- /app/crud/crud_parts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/crud/crud_parts.py -------------------------------------------------------------------------------- /app/crud/crud_permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/crud/crud_permission.py -------------------------------------------------------------------------------- /app/crud/crud_qr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/crud/crud_qr.py -------------------------------------------------------------------------------- /app/crud/crud_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/crud/crud_settings.py -------------------------------------------------------------------------------- /app/crud/crud_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/crud/crud_statistics.py -------------------------------------------------------------------------------- /app/crud/crud_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/crud/crud_tags.py -------------------------------------------------------------------------------- /app/crud/crud_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/crud/crud_users.py -------------------------------------------------------------------------------- /app/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/db.py -------------------------------------------------------------------------------- /app/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/example.env -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/main.py -------------------------------------------------------------------------------- /app/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/models/models.py -------------------------------------------------------------------------------- /app/models/shared_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/models/shared_models.py -------------------------------------------------------------------------------- /app/schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/schemas/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/schemas/requests.py -------------------------------------------------------------------------------- /app/schemas/responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/schemas/responses.py -------------------------------------------------------------------------------- /app/schemas/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/schemas/schemas.py -------------------------------------------------------------------------------- /app/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/service/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/service/auth.py -------------------------------------------------------------------------------- /app/service/bearer_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/service/bearer_auth.py -------------------------------------------------------------------------------- /app/service/company_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/service/company_details.py -------------------------------------------------------------------------------- /app/service/default_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/service/default_settings.py -------------------------------------------------------------------------------- /app/service/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/service/event.py -------------------------------------------------------------------------------- /app/service/health_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/service/health_check.py -------------------------------------------------------------------------------- /app/service/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/service/helpers.py -------------------------------------------------------------------------------- /app/service/mentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/service/mentions.py -------------------------------------------------------------------------------- /app/service/notification_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/service/notification_email.py -------------------------------------------------------------------------------- /app/service/notification_sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/service/notification_sms.py -------------------------------------------------------------------------------- /app/service/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/service/notifications.py -------------------------------------------------------------------------------- /app/service/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/service/password.py -------------------------------------------------------------------------------- /app/service/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/service/scheduler.py -------------------------------------------------------------------------------- /app/service/tenants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/service/tenants.py -------------------------------------------------------------------------------- /app/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/storage/aws_s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/storage/aws_s3.py -------------------------------------------------------------------------------- /app/storage/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/storage/base.py -------------------------------------------------------------------------------- /app/storage/s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/storage/s3.py -------------------------------------------------------------------------------- /app/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/utils/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/app/utils/decorators.py -------------------------------------------------------------------------------- /commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commands/db_backup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commands/db_backup/backups/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commands/db_backup/manage_postgres_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/commands/db_backup/manage_postgres_db.py -------------------------------------------------------------------------------- /commands/db_backup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/commands/db_backup/readme.md -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/compose.yaml -------------------------------------------------------------------------------- /dev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/dev.Dockerfile -------------------------------------------------------------------------------- /docs/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/docs/docs.md -------------------------------------------------------------------------------- /docs/img/FK_Tasks_Users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/docs/img/FK_Tasks_Users.png -------------------------------------------------------------------------------- /migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/migrations/env.py -------------------------------------------------------------------------------- /migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/migrations/script.py.mako -------------------------------------------------------------------------------- /migrations/versions/2022_07_18_1509-d6ba8c13303e_initial_shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/migrations/versions/2022_07_18_1509-d6ba8c13303e_initial_shared.py -------------------------------------------------------------------------------- /migrations/versions/2022_08_29_1620-80726328353e_add_tables_users_roles_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/migrations/versions/2022_08_29_1620-80726328353e_add_tables_users_roles_permissions.py -------------------------------------------------------------------------------- /migrations/versions/2022_08_29_1621-338496320c4d_add_permissions_entries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/migrations/versions/2022_08_29_1621-338496320c4d_add_permissions_entries.py -------------------------------------------------------------------------------- /migrations/versions/2023_04_26_1750-055684700394_add_users_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/migrations/versions/2023_04_26_1750-055684700394_add_users_group.py -------------------------------------------------------------------------------- /migrations/versions/2023_04_26_1752-a1b0cf6b2fbb_add_settings_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/migrations/versions/2023_04_26_1752-a1b0cf6b2fbb_add_settings_table.py -------------------------------------------------------------------------------- /migrations/versions/2023_04_26_1753-b2e42964ad3f_add_files_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/migrations/versions/2023_04_26_1753-b2e42964ad3f_add_files_table.py -------------------------------------------------------------------------------- /migrations/versions/2023_04_26_1754-38e5957fa66f_add_items_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/migrations/versions/2023_04_26_1754-38e5957fa66f_add_items_table.py -------------------------------------------------------------------------------- /migrations/versions/2023_04_26_1755-40bde431a56f_add_guides_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/migrations/versions/2023_04_26_1755-40bde431a56f_add_guides_table.py -------------------------------------------------------------------------------- /migrations/versions/2023_04_26_1757-7283939d25ad_add_qr_code_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/migrations/versions/2023_04_26_1757-7283939d25ad_add_qr_code_table.py -------------------------------------------------------------------------------- /migrations/versions/2023_04_26_1759-249aba91b072_add_issues_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/migrations/versions/2023_04_26_1759-249aba91b072_add_issues_table.py -------------------------------------------------------------------------------- /migrations/versions/2023_04_26_1800-8899525de86a_add_events_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/migrations/versions/2023_04_26_1800-8899525de86a_add_events_table.py -------------------------------------------------------------------------------- /migrations/versions/2023_04_26_1801-3e3981bb512d_add_tags_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/migrations/versions/2023_04_26_1801-3e3981bb512d_add_tags_table.py -------------------------------------------------------------------------------- /migrations/versions/2023_04_26_1814-debb10a33f57_add_videos_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/migrations/versions/2023_04_26_1814-debb10a33f57_add_videos_table.py -------------------------------------------------------------------------------- /migrations/versions/2023_04_27_1418-cec65e1bd0de_add_parts_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/migrations/versions/2023_04_27_1418-cec65e1bd0de_add_parts_table.py -------------------------------------------------------------------------------- /migrations/versions/2023_07_10_1708-13be30248d7d_add_qr_code_scans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/migrations/versions/2023_07_10_1708-13be30248d7d_add_qr_code_scans.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/poetry.lock -------------------------------------------------------------------------------- /prepush.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/prepush.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | log_cli = True 3 | -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api_responses/GUS/gus_get_by_nip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/tests/api_responses/GUS/gus_get_by_nip.json -------------------------------------------------------------------------------- /tests/api_responses/GUS/gus_get_by_nip_no_data_found.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/tests/api_responses/GUS/gus_get_by_nip_no_data_found.json -------------------------------------------------------------------------------- /tests/api_responses/rejestr_io_get_by_nip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/tests/api_responses/rejestr_io_get_by_nip.json -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/csv_import_files/import_users.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/tests/csv_import_files/import_users.csv -------------------------------------------------------------------------------- /tests/feature/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/tests/feature/test_auth.py -------------------------------------------------------------------------------- /tests/feature/test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/tests/feature/test_files.py -------------------------------------------------------------------------------- /tests/feature/test_ideas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/tests/feature/test_ideas.py -------------------------------------------------------------------------------- /tests/feature/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/tests/feature/test_main.py -------------------------------------------------------------------------------- /tests/feature/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/tests/feature/test_user.py -------------------------------------------------------------------------------- /tests/files/postbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/tests/files/postbox.png -------------------------------------------------------------------------------- /tests/unit/test_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/tests/unit/test_password.py -------------------------------------------------------------------------------- /tests/unit/test_s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgurg/malgori_cmms_api/HEAD/tests/unit/test_s3.py --------------------------------------------------------------------------------