mirror of
https://gitlab.com/tildes/tildes.git
synced 2026-04-22 01:02:51 +02:00
49886af37e
See merge request tildes-community/tildes-cf!1
15 lines
386 B
YAML
15 lines
386 B
YAML
---
|
|
- name: Install Node.js
|
|
apt:
|
|
name:
|
|
- nodejs
|
|
- npm
|
|
|
|
- name: Install npm packages defined in package.json
|
|
become_user: "{{ app_username }}"
|
|
community.general.npm:
|
|
path: "{{ app_dir }}"
|
|
# --no-bin-links option is needed to prevent npm from creating symlinks in the .bin
|
|
# directory, which doesn't work inside Vagrant on Windows
|
|
no_bin_links: true
|