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