-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
54 lines (42 loc) · 1.71 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#### SERVICES INCLUDED IN DOCKERIZED STACK
# There's little chance you'll have to change these credentials because these values
# are hard-wired to work out-of-the-box on the dockerized stack (see docker-compose.yml)
# Only change these if you want to connect to other instances.
#QA DB
#DATABASE_NAME=<get_from_secrets_manager>
#DATABASE_USER_NAME=<get_from_secrets_manager>
#DATABASE_PASSWORD=<get_from_secrets_manager>
#DATABASE_HOST=<get_from_secrets_manager>
# AWS
AWS_ACCESS_KEY_ID=<get_from_secrets_manager>
AWS_SECRET_ACCESS_KEY=<get_from_secrets_manager>
AWS_REGION=us-east-1
S3_BUCKET_NAME=fedora-ingest-rails-qa-data
# Image Filestore
IMAGE_FILESTORE_DATABASE_HOST=filestore-db
IMAGE_FILESTORE_DATABASE_NAME=image_filestore_development
IMAGE_FILESTORE_DATABASE_USER=root
IMAGE_FILESTORE_DATABASE_PASSWORD=mysqlpassword
# Audio & Moving Image Filestore
AMI_FILESTORE_DATABASE_HOST=filestore-db
AMI_FILESTORE_DATABASE_NAME=ami_filestore_development
AMI_FILESTORE_DATABASE_USER=root
AMI_FILESTORE_DATABASE_PASSWORD=mysqlpassword
#### REMOTE SERVICES
# MMS API (host.docker.internal means your HOST machine, localhost)
MMS_URL="http://host.docker.internal:3000"
MMS_BASIC_USERNAME=admin
MMS_BASIC_PASSWORD=password
# Solr Instance that holds all repo api indexed data
# Find real value in parameter store /development/fedora_ingest_rails/repo_solr_url
REPO_SOLR_URL=https://example-solr8.example.org/solr/repoapi_dev
# Link minter service
LINK_USERNAME=link
LINK_PASSWORD=link
LINK_CREATE_BASE_URL=http://localhost:8081
LINK_PUBLIC_BASE_URL=http://localhost:8081
#### VARIABLES USED FOR LOCAL DEVELOPMENT
# You shouldn't want/have to edit these
INGESTOR_TEST_DATABASE_HOST=postgres
PASSENGER_APP_ENV=development
RAILS_ENV=development