From 30875377a5119b7f700cd2220c3c16291c530639 Mon Sep 17 00:00:00 2001 From: Luca Bilke Date: Sat, 12 Oct 2024 16:40:43 +0200 Subject: [PATCH] initial commit --- .gitignore | 2 ++ README.md | 1 + galaxy.yml | 32 ++++++++++++++++++++++++++++++++ meta/runtime.yml | 2 ++ plugins/pyproject.toml | 11 +++++++++++ 5 files changed, 48 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 galaxy.yml create mode 100644 meta/runtime.yml create mode 100644 plugins/pyproject.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7d07d7f --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.retry +*.pyc diff --git a/README.md b/README.md new file mode 100644 index 0000000..c045368 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# Ansible Collection - snailed.ez_compose diff --git a/galaxy.yml b/galaxy.yml new file mode 100644 index 0000000..bcc3a2d --- /dev/null +++ b/galaxy.yml @@ -0,0 +1,32 @@ +namespace: snailed + +name: ez_compose + +version: 1.0.0 + +readme: README.md + +authors: + - Luca Bilke + +description: A set of modules and roles to ease the creation of docker-compose files + +license: + - MIT + +tags: + - docker + - compose + - docker_compose + +dependencies: {} + +repository: http://git.snaile.de/snailed/ez_compose + +documentation: http://git.snaile.de/snailed/ez_compose/src/branch/main/docs + +homepage: http://git.snaile.de/snailed/ez_compose + +issues: http://git.snaile.de/snailed/ez_compose/issues + +build_ignore: [] diff --git a/meta/runtime.yml b/meta/runtime.yml new file mode 100644 index 0000000..aa76041 --- /dev/null +++ b/meta/runtime.yml @@ -0,0 +1,2 @@ +--- +requires_ansible: ">=2.17.4" diff --git a/plugins/pyproject.toml b/plugins/pyproject.toml new file mode 100644 index 0000000..0b3e8e7 --- /dev/null +++ b/plugins/pyproject.toml @@ -0,0 +1,11 @@ +[tool.black] +line-length=100 + +[tool.basedpyright] +typeCheckingMode = "strict" +reportIgnoreCommentWithoutRule = true +reportMissingTypeStubs = false + +# handled by ruff +reportUnusedVariable = false +reportUnusedImport = false