aboutsummaryrefslogtreecommitdiffhomepage
path: root/Capfile
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2015-08-18 16:14:23 +0200
committerJeremy Benoist <j0k3r@users.noreply.github.com>2015-08-18 16:14:23 +0200
commitc3cb46809b54b2f74d00de7330e06be45776e61e (patch)
treead1965135914611b476c0d8533326def52607fd7 /Capfile
parent54f2b4a254345a58cd03b872bd772863855c7f1f (diff)
parentfd72e99d534aff6ee1b88eff7702886a468050f4 (diff)
downloadwallabag-c3cb46809b54b2f74d00de7330e06be45776e61e.tar.gz
wallabag-c3cb46809b54b2f74d00de7330e06be45776e61e.tar.zst
wallabag-c3cb46809b54b2f74d00de7330e06be45776e61e.zip
Merge pull request #1341 from wallabag/v2-capistrano
capistrano config
Diffstat (limited to 'Capfile')
-rw-r--r--Capfile29
1 files changed, 29 insertions, 0 deletions
diff --git a/Capfile b/Capfile
new file mode 100644
index 00000000..d3273469
--- /dev/null
+++ b/Capfile
@@ -0,0 +1,29 @@
1# Load DSL and set up stages
2require 'capistrano/setup'
3
4# Include default deployment tasks
5require 'capistrano/deploy'
6
7require 'capistrano/symfony'
8
9# Include tasks from other gems included in your Gemfile
10#
11# For documentation on these, see for example:
12#
13# https://github.com/capistrano/rvm
14# https://github.com/capistrano/rbenv
15# https://github.com/capistrano/chruby
16# https://github.com/capistrano/bundler
17# https://github.com/capistrano/rails
18# https://github.com/capistrano/passenger
19#
20# require 'capistrano/rvm'
21# require 'capistrano/rbenv'
22# require 'capistrano/chruby'
23# require 'capistrano/bundler'
24# require 'capistrano/rails/assets'
25# require 'capistrano/rails/migrations'
26# require 'capistrano/passenger'
27
28# Load custom tasks from `lib/capistrano/tasks` if you have any defined
29Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }