aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorKevin Decherf <kevin@kdecherf.com>2020-03-08 17:00:51 +0100
committerKevin Decherf <kevin@kdecherf.com>2020-03-08 17:00:51 +0100
commit899ab0d04fa84702f26c224d1ddcc73a786f5a3f (patch)
tree137e62f836cfde33dd22baf70a7d1b2b4d292ed1
parentba820b12b691ecbbcc4a4c31ecb4dbeb084d27dd (diff)
downloadwallabag-899ab0d04fa84702f26c224d1ddcc73a786f5a3f.tar.gz
wallabag-899ab0d04fa84702f26c224d1ddcc73a786f5a3f.tar.zst
wallabag-899ab0d04fa84702f26c224d1ddcc73a786f5a3f.zip
Remove capistrano-related files
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
-rw-r--r--Capfile15
-rw-r--r--Gemfile6
-rw-r--r--Gemfile.lock37
-rw-r--r--app/config/capistrano/deploy.rb19
-rw-r--r--app/config/capistrano/deploy/production.rb0
-rw-r--r--app/config/capistrano/deploy/staging.rb2
6 files changed, 0 insertions, 79 deletions
diff --git a/Capfile b/Capfile
deleted file mode 100644
index cc807112..00000000
--- a/Capfile
+++ /dev/null
@@ -1,15 +0,0 @@
1set :deploy_config_path, 'app/config/capistrano/deploy.rb'
2set :stage_config_path, 'app/config/capistrano/deploy'
3
4# Load DSL and set up stages
5require 'capistrano/setup'
6
7# Include default deployment tasks
8require 'capistrano/deploy'
9
10require 'capistrano/composer'
11require 'capistrano/file-permissions'
12require 'capistrano/symfony'
13
14# Load custom tasks from `lib/capistrano/tasks` if you have any defined
15Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }
diff --git a/Gemfile b/Gemfile
deleted file mode 100644
index 233be899..00000000
--- a/Gemfile
+++ /dev/null
@@ -1,6 +0,0 @@
1source "https://rubygems.org"
2
3gem 'capistrano', '~> 3.4'
4gem 'capistrano-composer'
5gem 'capistrano-symfony', '~> 1.0.0.rc1'
6gem 'capistrano-file-permissions'
diff --git a/Gemfile.lock b/Gemfile.lock
deleted file mode 100644
index 7b13b399..00000000
--- a/Gemfile.lock
+++ /dev/null
@@ -1,37 +0,0 @@
1GEM
2 remote: https://rubygems.org/
3 specs:
4 capistrano (3.4.0)
5 i18n
6 rake (>= 10.0.0)
7 sshkit (~> 1.3)
8 capistrano-composer (0.0.6)
9 capistrano (>= 3.0.0.pre)
10 capistrano-file-permissions (1.0.0)
11 capistrano (~> 3.0)
12 capistrano-symfony (1.0.0.rc1)
13 capistrano (~> 3.1)
14 capistrano-composer (~> 0.0.3)
15 capistrano-file-permissions (~> 1.0)
16 colorize (0.7.7)
17 i18n (0.7.0)
18 net-scp (1.2.1)
19 net-ssh (>= 2.6.5)
20 net-ssh (2.9.2)
21 rake (10.4.2)
22 sshkit (1.7.1)
23 colorize (>= 0.7.0)
24 net-scp (>= 1.1.2)
25 net-ssh (>= 2.8.0)
26
27PLATFORMS
28 ruby
29
30DEPENDENCIES
31 capistrano (~> 3.4)
32 capistrano-composer
33 capistrano-file-permissions
34 capistrano-symfony (~> 1.0.0.rc1)
35
36BUNDLED WITH
37 1.13.5
diff --git a/app/config/capistrano/deploy.rb b/app/config/capistrano/deploy.rb
deleted file mode 100644
index fee04620..00000000
--- a/app/config/capistrano/deploy.rb
+++ /dev/null
@@ -1,19 +0,0 @@
1# config valid only for current version of Capistrano
2
3set :application, 'wallabag'
4set :repo_url, 'git@github.com:wallabag/wallabag.git'
5
6set :ssh_user, 'framasoft_bag'
7server '78.46.248.87', user: fetch(:ssh_user), roles: %w{web app db}
8
9set :format, :pretty
10set :log_level, :info
11# set :log_level, :debug
12
13set :composer_install_flags, '--no-dev --prefer-dist --no-interaction --optimize-autoloader'
14
15set :linked_files, %w{app/config/parameters.yml}
16set :linked_dirs, [fetch(:log_path), "var/sessions", "web/uploads", "data"]
17set :keep_releases, 3
18
19after 'deploy:updated', 'symfony:cache:clear'
diff --git a/app/config/capistrano/deploy/production.rb b/app/config/capistrano/deploy/production.rb
deleted file mode 100644
index e69de29b..00000000
--- a/app/config/capistrano/deploy/production.rb
+++ /dev/null
diff --git a/app/config/capistrano/deploy/staging.rb b/app/config/capistrano/deploy/staging.rb
deleted file mode 100644
index ad899a85..00000000
--- a/app/config/capistrano/deploy/staging.rb
+++ /dev/null
@@ -1,2 +0,0 @@
1set :branch, 'master'
2set :deploy_to, '/var/www/v2.wallabag.org/web/'