├── .dockerignore ├── .env.example ├── .github └── workflows │ └── test.yml ├── .gitignore ├── Dockerfile ├── README.md ├── diun-dash-example.png ├── docker-compose.yml ├── pyproject.toml ├── scripts ├── dev.sh ├── migrate.sh ├── send-test-notification.sh └── test.sh ├── src ├── alembic.ini ├── alembic │ ├── README │ ├── env.py │ ├── script.py.mako │ └── versions │ │ ├── 1773e6072a71_add_image_name_image_tag_and_digest_to_.py │ │ ├── 7311ecad9a85_create_diun_updates_table.py │ │ └── f62e201ae66b_add_image_created_at_field_to_diun_.py ├── database.py ├── main.py └── models.py ├── static └── favicon.svg ├── templates └── index.html ├── tests ├── conftest.py ├── test_auth.py ├── test_dashboard.py ├── test_database.py ├── test_models.py ├── test_multi_server.py ├── test_parsing.py └── test_webhook_workflow.py └── uv.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/README.md -------------------------------------------------------------------------------- /diun-dash-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/diun-dash-example.png -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/scripts/dev.sh -------------------------------------------------------------------------------- /scripts/migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/scripts/migrate.sh -------------------------------------------------------------------------------- /scripts/send-test-notification.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/scripts/send-test-notification.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /src/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/src/alembic.ini -------------------------------------------------------------------------------- /src/alembic/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /src/alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/src/alembic/env.py -------------------------------------------------------------------------------- /src/alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/src/alembic/script.py.mako -------------------------------------------------------------------------------- /src/alembic/versions/1773e6072a71_add_image_name_image_tag_and_digest_to_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/src/alembic/versions/1773e6072a71_add_image_name_image_tag_and_digest_to_.py -------------------------------------------------------------------------------- /src/alembic/versions/7311ecad9a85_create_diun_updates_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/src/alembic/versions/7311ecad9a85_create_diun_updates_table.py -------------------------------------------------------------------------------- /src/alembic/versions/f62e201ae66b_add_image_created_at_field_to_diun_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/src/alembic/versions/f62e201ae66b_add_image_created_at_field_to_diun_.py -------------------------------------------------------------------------------- /src/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/src/database.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/src/main.py -------------------------------------------------------------------------------- /src/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/src/models.py -------------------------------------------------------------------------------- /static/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/static/favicon.svg -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/templates/index.html -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/tests/test_auth.py -------------------------------------------------------------------------------- /tests/test_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/tests/test_dashboard.py -------------------------------------------------------------------------------- /tests/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/tests/test_database.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_multi_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/tests/test_multi_server.py -------------------------------------------------------------------------------- /tests/test_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/tests/test_parsing.py -------------------------------------------------------------------------------- /tests/test_webhook_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/tests/test_webhook_workflow.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orkaa/diun-dash/HEAD/uv.lock --------------------------------------------------------------------------------