0
0
Fork 0

Add capistrano to development environment

This commit is contained in:
Eugen Rochko 2017-01-30 20:03:17 +01:00
parent 404d2050d3
commit a2a85e8549
5 changed files with 62 additions and 0 deletions

11
config/deploy.rb Normal file
View file

@ -0,0 +1,11 @@
lock '3.7.2'
set :application, 'mastodon'
set :repo_url, 'https://github.com/tootsuite/mastodon.git'
set :branch, 'master'
set :rbenv_type, :user
set :rbenv_ruby, File.read('.ruby-version').strip
set :migration_role, :app
append :linked_files, '.env.production'
append :linked_dirs, 'vendor/bundle', 'node_modules', 'public/system'