mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:40:00 +08:00
5d014c633b
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>
5 lines
151 B
Plaintext
5 lines
151 B
Plaintext
load 'deploy' if respond_to?(:namespace)
|
|
load 'deploy/assets'
|
|
Dir['vendor/plugins/*/recipes/*.rb'].each { |plugin| load(plugin) }
|
|
load 'config/deploy'
|