-
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.
- Loading branch information
1 parent
4e9420b
commit 4e7a8c8
Showing
7 changed files
with
72 additions
and
120 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# | ||
# Environment variables for the local Docker environment. | ||
# Override these values using a `docker.env.local` file. | ||
# | ||
|
||
AWS_ACCESS_KEY_ID=minio_root_user | ||
AWS_SECRET_ACCESS_KEY=minio_root_password | ||
AWS_REGION=us-east-1 | ||
AWS_ENDPOINT_URL="http://minio:9000" | ||
AWS_IIIF_ASSET_BUCKET=iiif-derivatives | ||
AWS_BULKRAX_IMPORTS_BUCKET=ldr-imports | ||
|
||
# FCRepo connection info | ||
FEDORA_URL=http://fedora:8080/rest | ||
FEDORA_TEST_URL=http://fedora:8080/rest | ||
|
||
FITS_SERVLET_URL=http://fits-servlet:8080/fits | ||
|
||
HYRAX_DERIVATIVES_PATH=/spot/tmp/derivatives | ||
|
||
IIIF_BASE_URL=http://localhost:8182/iiif/2 | ||
|
||
PSQL_PASSWORD=spot_dev_pw | ||
PSQL_HOST=db | ||
PSQL_USER=spot_dev_user | ||
PSQL_DATABASE=spot_dev | ||
|
||
RAILS_ENV=development | ||
RAILS_LOG_TO_STDOUT="true" | ||
RAILS_SERVE_STATIC_FILES="1" | ||
|
||
REDIS_URL=redis://redis:6379 | ||
REDIS_PASSWORD="" | ||
|
||
SECRET_KEY_BASE=localshhh | ||
|
||
SOLR_URL=http://solr:8983/solr/spot-development | ||
SOLR_TEST_URL=http://solr:8983/solr/spot-test | ||
|
||
VALKYRIE_SOLR_HOST=solr | ||
VALKYRIE_SOLR_CORE=spot-development |
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,11 @@ | ||
# Host name for the application. For CAS integration, this needs to be a recognized service. | ||
APPLICATION_FQDN= | ||
URL_HOST=https://$APPLICATION_FQDN | ||
|
||
# Base URL for Campus Authorization System (?) login | ||
CAS_BASE_URL= | ||
|
||
# Admin users to create during db:seed; | ||
# use your @lafayette.edu address, separate with commas if creating multiples | ||
DEV_ADMIN_USERS= | ||
|