Initial qwen3 run with opencode

This commit is contained in:
2026-03-23 21:36:35 +02:00
commit 585b219b52
22 changed files with 972 additions and 0 deletions

24
roles.md Normal file
View File

@@ -0,0 +1,24 @@
## Roles
Organize tasks into reusable roles:
```yaml
- name: Deploy web app
hosts: webservers
roles:
- common
- python
- nginx
# Example role structure:
# roles/
# common/
# tasks/main.yml
# vars/main.yml
# python/
# tasks/main.yml
# vars/main.yml
# nginx/
# tasks/main.yml
# vars/main.yml
```