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