This repository has been archived on 2025-04-27. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
newsreader-ansible/playbook.yml

17 lines
423 B
YAML

- hosts: newsreader
become: yes
become_method: sudo
tasks:
- import_tasks: "tasks/main.yml"
- import_tasks: "tasks/setup.yml"
- import_tasks: "tasks/poetry.yml"
- import_tasks: "tasks/project.yml"
handlers:
- import_tasks: "handlers.yml"
vars_files:
- "vars/app.yml"
- "vars/main.yml"
- "vars/network.yml"
- "vars/postgres.yml"
- "vars/reddit.yml"
- "vars/twitter.yml"