14 lines
238 B
YAML
14 lines
238 B
YAML
---
|
|
- name: Install development packages
|
|
ansible.builtin.apt:
|
|
name:
|
|
# Development tools
|
|
- git
|
|
- nodejs
|
|
- npm
|
|
# Build tools
|
|
- build-essential
|
|
- python3
|
|
- python3-pip
|
|
state: present
|