13 lines
223 B
YAML
13 lines
223 B
YAML
---
|
|
- name: Install development packages
|
|
apt:
|
|
name:
|
|
# Development tools
|
|
- git
|
|
- nodejs
|
|
- npm
|
|
# Build tools
|
|
- build-essential
|
|
- python3
|
|
- python3-pip
|
|
state: present |