initial commit

This commit is contained in:
Luca Bilke 2024-10-12 16:40:43 +02:00
commit 30875377a5
No known key found for this signature in database
GPG Key ID: C9E851809C1A5BDE
5 changed files with 48 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*.retry
*.pyc

1
README.md Normal file
View File

@ -0,0 +1 @@
# Ansible Collection - snailed.ez_compose

32
galaxy.yml Normal file
View File

@ -0,0 +1,32 @@
namespace: snailed
name: ez_compose
version: 1.0.0
readme: README.md
authors:
- Luca Bilke <luca@bil.ke>
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: []

2
meta/runtime.yml Normal file
View File

@ -0,0 +1,2 @@
---
requires_ansible: ">=2.17.4"

11
plugins/pyproject.toml Normal file
View File

@ -0,0 +1,11 @@
[tool.black]
line-length=100
[tool.basedpyright]
typeCheckingMode = "strict"
reportIgnoreCommentWithoutRule = true
reportMissingTypeStubs = false
# handled by ruff
reportUnusedVariable = false
reportUnusedImport = false