mastible/roles/mastodon-app/tasks/main.yml

41 lines
1.3 KiB
YAML

---
# All tasks in this role should be done as the mastodon user
# This role clones the Mastodon GitHub repository and installs
# it's node.js and Ruby dependencies
- name: Clone Mastodon git repository
git:
repo: 'https://github.com/tootsuite/mastodon.git'
dest: /home/mastodon/live
version: v2.6.5
become: true
become_user: mastodon
- name: Install bundler
shell: cd /home/mastodon/live && gem install bundler
args:
executable: /bin/bash
environment:
PATH: '/home/mastodon/.rbenv/bin:/home/mastodon/.rbenv/shims:/home/mastodon/.rbenv/plugins/ruby-build/bin:{{ ansible_env.PATH }}'
become: true
become_user: mastodon
- name: Remove any Gemfile.lock files
file:
name: /home/mastodon/live/Gemfile.lock
state: absent
become: true
become_user: mastodon
- name: Use bundler to install the rest of the Ruby dependencies
shell: cd /home/mastodon/live && bundle install --deployment --without development test
args:
executable: /bin/bash
environment:
PATH: '/home/mastodon/.rbenv/bin:/home/mastodon/.rbenv/shims:/home/mastodon/.rbenv/plugins/ruby-build/bin:{{ ansible_env.PATH }}'
become: true
become_user: mastodon
- name: Use yarn to install node.js dependencies
shell: cd /home/mastodon/live && yarn install --pure-lockfile
args:
executable: /bin/bash
become: true
become_user: mastodon