Skip to content

Commit 3bf399a

Browse files
committed
chore: Remove make deploy and capistrano.
These were from before the container deployment era.
1 parent 5849782 commit 3bf399a

8 files changed

Lines changed: 1 addition & 190 deletions

File tree

Capfile

Lines changed: 0 additions & 47 deletions
This file was deleted.

Gemfile

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -112,13 +112,3 @@ gem "selenium-webdriver", group: :test
112112
gem "webdrivers", group: :test
113113
# Make sure the database is in a clean state in between tests
114114
gem "database_cleaner-active_record", group: :test
115-
116-
# Deployment
117-
gem "capistrano", group: :development
118-
gem "capistrano-asdf", group: :development
119-
gem "capistrano-passenger", group: :development
120-
gem "capistrano-rails", group: :development
121-
gem "capistrano-sidekiq", group: :development, require: false
122-
# ed25519 ssh key support
123-
gem "bcrypt_pbkdf", group: :development
124-
gem "ed25519", group: :development

Gemfile.lock

Lines changed: 0 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,9 @@ GEM
5454
uri (>= 0.13.1)
5555
addressable (2.8.8)
5656
public_suffix (>= 2.0.2, < 8.0)
57-
airbrussh (1.6.0)
58-
sshkit (>= 1.6.1, != 1.7.0)
5957
ast (2.4.3)
6058
base64 (0.3.0)
6159
bcrypt (3.1.21)
62-
bcrypt_pbkdf (1.1.2)
6360
benchmark (0.5.0)
6461
bigdecimal (3.3.1)
6562
bindex (0.8.1)
@@ -68,25 +65,6 @@ GEM
6865
builder (3.3.0)
6966
byebug (12.0.0)
7067
cancancan (3.6.1)
71-
capistrano (3.20.0)
72-
airbrussh (>= 1.0.0)
73-
i18n
74-
rake (>= 10.0.0)
75-
sshkit (>= 1.9.0)
76-
capistrano-asdf (1.1.1)
77-
capistrano (~> 3.0)
78-
sshkit (~> 1.2)
79-
capistrano-bundler (2.2.0)
80-
capistrano (~> 3.1)
81-
capistrano-passenger (0.2.1)
82-
capistrano (~> 3.0)
83-
capistrano-rails (1.7.0)
84-
capistrano (~> 3.1)
85-
capistrano-bundler (>= 1.1, < 3)
86-
capistrano-sidekiq (3.2.0)
87-
capistrano (>= 3.9.0)
88-
capistrano-bundler
89-
sidekiq (>= 7.0)
9068
capybara (3.40.0)
9169
addressable
9270
matrix
@@ -121,7 +99,6 @@ GEM
12199
dotenv (= 3.2.0)
122100
railties (>= 6.1)
123101
drb (2.2.3)
124-
ed25519 (1.4.0)
125102
erb (6.0.1)
126103
erubi (1.13.1)
127104
et-orbi (1.4.0)
@@ -204,13 +181,8 @@ GEM
204181
net-protocol
205182
net-protocol (0.2.2)
206183
timeout
207-
net-scp (4.1.0)
208-
net-ssh (>= 2.6.5, < 8.0.0)
209-
net-sftp (4.0.0)
210-
net-ssh (>= 5.0.0, < 8.0.0)
211184
net-smtp (0.5.1)
212185
net-protocol
213-
net-ssh (7.3.0)
214186
nio4r (2.7.5)
215187
nokogiri (1.19.1-aarch64-linux-gnu)
216188
racc (~> 1.4)
@@ -250,7 +222,6 @@ GEM
250222
omniauth-zeuswpi (1.1.0)
251223
omniauth-oauth2 (~> 1.7.1)
252224
orm_adapter (0.5.0)
253-
ostruct (0.6.3)
254225
parallel (1.27.0)
255226
parser (3.3.10.0)
256227
ast (~> 2.4.1)
@@ -413,13 +384,6 @@ GEM
413384
sqlite3 (2.9.0-x86_64-darwin)
414385
sqlite3 (2.9.0-x86_64-linux-gnu)
415386
sqlite3 (2.9.0-x86_64-linux-musl)
416-
sshkit (1.25.0)
417-
base64
418-
logger
419-
net-scp (>= 1.1.2)
420-
net-sftp (>= 2.1.2)
421-
net-ssh (>= 2.8.0)
422-
ostruct
423387
stimulus-rails (1.3.4)
424388
railties (>= 6.0.0)
425389
stringio (3.2.0)
@@ -475,22 +439,15 @@ DEPENDENCIES
475439
activerecord (~> 8.1.0)
476440
activestorage (~> 8.1.0)
477441
activesupport (~> 8.1.0)
478-
bcrypt_pbkdf
479442
benchmark
480443
bootsnap
481444
byebug
482445
cancancan
483-
capistrano
484-
capistrano-asdf
485-
capistrano-passenger
486-
capistrano-rails
487-
capistrano-sidekiq
488446
capybara
489447
database_cleaner-active_record
490448
debug
491449
devise
492450
dotenv-rails
493-
ed25519
494451
factory_bot_rails
495452
faker
496453
foreman

Makefile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,8 @@ lint:
3939
test:
4040
$(dc) up --build -t1 test
4141

42-
deploy:
43-
$(dc) up --build -t1 -d development
44-
$(dc) exec development bundle exec cap production deploy
45-
4642
shell:
4743
$(dc) exec development sh
4844

4945

50-
.PHONY: build up down start stop restart logs migrate seed swagger lint test deploy shell
46+
.PHONY: build up down start stop restart logs migrate seed swagger lint test shell

compose.development.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ services:
99
- "127.0.0.1:3000:3000"
1010
volumes:
1111
- "./:/tab"
12-
# - "${HOME}/.ssh:/root/.ssh:ro"
1312
tmpfs:
1413
- /tab/tmp
1514

config/deploy.rb

Lines changed: 0 additions & 67 deletions
This file was deleted.

config/deploy/production.rb

Lines changed: 0 additions & 9 deletions
This file was deleted.

lib/capistrano/tasks/logs.cap

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)