Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add courses data to additional environments #4298

Merged
merged 1 commit into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/deploy/preview_folio.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set :bundle_without, %w[sqlite development test].join(' ')

server 'sw-webapp-sandbox-f.stanford.edu', user: 'blacklight', roles: %w[web db app]
server 'sw-webapp-sandbox-f.stanford.edu', user: 'blacklight', roles: %w[web db app courses]

Capistrano::OneTimeKey.generate_one_time_key!
set :rails_env, 'production'
2 changes: 1 addition & 1 deletion config/deploy/preview_gryphon.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set :bundle_without, %w[sqlite development test].join(' ')

# Other aliases are sw-gryphon-search, gryphon-search, and searchworks-gryphon-search
server 'sw-webapp-sandbox-c.stanford.edu', user: 'blacklight', roles: %w[web db app]
server 'sw-webapp-sandbox-c.stanford.edu', user: 'blacklight', roles: %w[web db app courses]

Capistrano::OneTimeKey.generate_one_time_key!
set :rails_env, 'production'
4 changes: 2 additions & 2 deletions config/deploy/prod.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
server 'sw-webapp-d.stanford.edu', user: 'blacklight', roles: %w[web db app]
server 'sw-webapp-e.stanford.edu', user: 'blacklight', roles: %w[web db app]

server 'sw-webapp-bot-a.stanford.edu', user: 'blacklight', roles: %w[web db app]
server 'sw-webapp-bot-b.stanford.edu', user: 'blacklight', roles: %w[web db app]
server 'sw-webapp-bot-a.stanford.edu', user: 'blacklight', roles: %w[web db app courses]
server 'sw-webapp-bot-b.stanford.edu', user: 'blacklight', roles: %w[web db app courses]

Capistrano::OneTimeKey.generate_one_time_key!
set :rails_env, 'production'
Expand Down