-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New temporary UAT and dev environments for profiles testing (#1728)
* new temp environments * remove harvesting from cron
- Loading branch information
Showing
2 changed files
with
18 additions
and
0 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 |
---|---|---|
@@ -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(' ') |
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 |
---|---|---|
@@ -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 |