mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
PHRAS-1805 PHRAS-1839 Add yarn setup and make exiftool executable
This commit is contained in:
@@ -16,5 +16,6 @@
|
||||
- composer
|
||||
- mailcatcher
|
||||
- node
|
||||
- yarn
|
||||
- app
|
||||
- ffmpeg
|
||||
|
@@ -63,3 +63,8 @@
|
||||
shell: bin/console s:i:c
|
||||
args:
|
||||
chdir: /vagrant/
|
||||
|
||||
- name: Make exiftool executable
|
||||
file:
|
||||
path: /vagrant/vendor/phpexiftool/exiftool/exiftool
|
||||
mode: 0755
|
||||
|
11
resources/ansible/roles/yarn/tasks/main.yml
Normal file
11
resources/ansible/roles/yarn/tasks/main.yml
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
- name: Configure the Yarn APT key
|
||||
apt_key: url={{ repositories.yarn }}pubkey.gpg
|
||||
|
||||
- name: Add Yarn repository
|
||||
apt_repository:
|
||||
repo: 'deb {{ repositories.yarn }} stable main'
|
||||
state: present
|
||||
|
||||
- name: Install Yarn
|
||||
apt: pkg=yarn state=present
|
@@ -32,6 +32,7 @@ repositories:
|
||||
mariadb: 'deb http://mirror6.layerjet.com/mariadb/repo/10.1/ubuntu'
|
||||
elasticsearch: 'ppa:webupd8team/java'
|
||||
rabbitmq: 'deb http://www.rabbitmq.com/debian/ testing main'
|
||||
yarn: 'https://dl.yarnpkg.com/debian/'
|
||||
vagrant_local:
|
||||
install: '1'
|
||||
vm:
|
||||
|
Reference in New Issue
Block a user