mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-07 14:25:47 +08:00
Add the following sample Capistrano configuration files to ease deployment to a VPS using Capistrano: * `config/deploy.rb.sample` * `config/thin.yml.sample` * `Capfile.sample` The sample Capfile will additionally load any recipes provided by Discourse plugins. Signed-off-by: David Celis <me@davidcel.is>
4 lines
151 B
Text
4 lines
151 B
Text
load 'deploy' if respond_to?(:namespace)
|
|
load 'deploy/assets'
|
|
Dir['vendor/plugins/*/recipes/*.rb'].each { |plugin| load(plugin) }
|
|
load 'config/deploy'
|