2017-04-16 20:52:18 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-15 01:38:29 +10:00
|
|
|
lock '3.8.1'
|
2017-04-16 20:52:18 +10:00
|
|
|
|
2017-04-16 12:01:27 +10:00
|
|
|
set :repo_url, ENV.fetch('REPO', 'https://github.com/tootsuite/mastodon.git')
|
|
|
|
set :branch, ENV.fetch('BRANCH', 'master')
|
2017-01-31 06:03:17 +11:00
|
|
|
|
|
|
|
set :application, 'mastodon'
|
|
|
|
set :rbenv_type, :user
|
|
|
|
set :rbenv_ruby, File.read('.ruby-version').strip
|
|
|
|
set :migration_role, :app
|
|
|
|
|
2017-04-19 22:28:23 +10:00
|
|
|
append :linked_files, '.env.production', 'public/robots.txt'
|
2017-01-31 06:03:17 +11:00
|
|
|
append :linked_dirs, 'vendor/bundle', 'node_modules', 'public/system'
|