Skip to content

Commit

Permalink
New temporary UAT and dev environments for profiles testing (#1728)
Browse files Browse the repository at this point in the history
* new temp environments

* remove harvesting from cron
  • Loading branch information
peetucket authored Sep 16, 2024
1 parent 1115c3f commit 15b8f17
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
8 changes: 8 additions & 0 deletions config/deploy/qa-temp.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# see https://github.com/sul-dlss/sul_pub/wiki/Servers-Deployment-environment
server 'sul-pub-cap-dev-temp.stanford.edu', user: 'pub', roles: %w(web db app)

Capistrano::OneTimeKey.generate_one_time_key!

set :rails_env, 'production'

set :bundle_without, %w(development test).join(' ')
10 changes: 10 additions & 0 deletions config/deploy/uat-temp.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# see https://github.com/sul-dlss/sul_pub/wiki/Servers-Deployment-environment
server 'sul-pub-cap-uat-temp.stanford.edu', user: 'pub', roles: %w(web db app external_monitor)

Capistrano::OneTimeKey.generate_one_time_key!

set :rails_env, 'production'

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

set :log_level, :info

0 comments on commit 15b8f17

Please sign in to comment.