-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix deployment and asset compilation
- Loading branch information
1 parent
5025e41
commit e4d6246
Showing
5 changed files
with
9 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,3 +86,4 @@ spec/carrierwave | |
# Ignore credentials | ||
/config/master.key | ||
/config/credentials.yml.enc | ||
/config/credentials/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# config valid only for current version of Capistrano | ||
lock '3.17.0' | ||
lock '3.18.1' | ||
|
||
set :application, 'citadel' | ||
set :rvm_ruby_string, 'ruby-2.5.0' | ||
set :rvm_ruby_string, 'ruby-3.1.2' | ||
|
||
# git settings | ||
set :repo_url, '[email protected]:ozfortress/citadel.git' | ||
|
@@ -23,7 +23,7 @@ | |
set :pty, true | ||
|
||
# Files and folders to keep between deployments | ||
set :linked_files, fetch(:linked_files, []).push('config/database.yml', 'config/credentials.yml.enc', 'master.key', 'config/news.yml') | ||
set :linked_files, fetch(:linked_files, []).push('config/database.yml', 'config/credentials/production.yml.enc', 'config/credentials/production.key', 'config/news.yml') | ||
set :linked_dirs, fetch(:linked_dirs, []).push('log', 'tmp', 'vendor/bundle', 'public/uploads') | ||
|
||
# Default value for default_env is {} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters