-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
90 lines (75 loc) · 2.42 KB
/
Copy path.env.example
File metadata and controls
90 lines (75 loc) · 2.42 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
ENCRYPTION_KEY=somerandomstuffgoeshere
# Sets CodeIgniter's ENVIRONMENT constant (via index.php: define('ENVIRONMENT', $_SERVER['CI_ENV'])).
# Accepted values: development, local, testing, production.
# Use 'local' for normal dev work. Production servers must set this to 'production'.
CI_ENV=local
ENVIRONMENT=local # needed for runJob.sh
# The dev/CI mock: canned remote login, group types, and entry hints.
# NEVER on a server, it signs in anyone who asks as a superadmin.
# Real deployments set their school's helper (UMNHelper, StOlafHelper, ...).
AUTH_HELPER=MockAuthHelper
REDIS_HOST=redis
BEANSTALK_HOST=beanstalkd
ELASTIC_HOST=elasticsearch:9200
ELASTIC_INDEX=elevator
DATABASE_HOST=postgres
DATABASE_USER="elevator"
DATABASE_PASSWORD="elevator"
DATABASE_DB=elevator
SMTP_HOST=
SMTP_USER=
SMTP_PASSWORD=
LDAP_USERNAME=
LDAP_PASSWORD=
LDAP_URI=
LDAP_SEARCH_BASE=
SHIBBOLETH_LOGIN=
SHIBBOLETH_LOGOUT=
JWPLAYER_KEY=
GOOGLE_API=
UMN_BEARER_TOKEN=
ARCGIS_ACCESS_TOKEN=
REMOTE_LOGIN_LABEL=Universty
GUEST_LOGIN_LABEL=Guest
CSS_OVERRIDE=FALSE
RESTRICT_HIDDEN_ASSETS=FALSE
SENTRY_DSN=
AVAILABLE_THEMES=["folwell","light"]
# option OAUTH config stuff
OAUTH_CLIENT=
OAUTH_SECRET=
OAUTH_APPLICATION=
OAUTH_DOMAIN=
OAUTH_DELEGATE_TYPE=
OAUTH_DELEGATE_PROJECT_ID=
OAUTH_DELEGATE_PRIVATE_KEY_ID=
OAUTH_DELEGATE_PRIVATE_KEY=
OAUTH_DELEGATE_CLIENT_EMAIL=
OAUTH_DELEGATE_CLIENT_ID=
OAUTH_DELEGATE_AUTH_URI=
OAUTH_DELEGATE_TOKEN_URI=
OAUTH_DELEGATE_AUTH_PROVIDER_X509_CERT_URL=
OAUTH_DELEGATE_CLIENT_X509_CERT_URL=
QUEUEING_METHOD=aws
SCRATCH_DIR=/scratch
DOCKER_SCRATCH_DIR=/tmp
HTTP_PORT=80
HTTPS_PORT=443
POSTGRES_PORT=5432
REDIS_PORT=6379
ELASTICSEARCH_PORT=9200
ELASTICSEARCH_TRANSPORT_PORT=9300
BEANSTALKD_PORT=11300
# Base URL used by Playwright tests. Must include the instance path segment.
# Must use HTTPS — config.php always generates https:// redirect URLs.
# Use HTTPS_PORT (nginx TLS listener). Default setup: https://localhost/defaultinstance
# Non-standard HTTPS port example: https://localhost:8443/defaultinstance
BASE_URL=https://localhost/defaultinstance
AWS_QUEUEING_REGION=us-east-1
AWS_QUEUEING_ACCESS_KEY_ID=""
AWS_QUEUEING_SECRET_ACCESS_KEY=""
AWS_QUEUEING_JOB_DEFINITION=""
# Initial admin password for local accounts. Used in Playwright API tests.
# bootstrap syncs the DB hash to sha1(ENCRYPTION_KEY + DEFAULT_ADMIN_PASSWORD),
# so you don't need to match the seed SQL hash — just set this and re-run bootstrap.
DEFAULT_ADMIN_PASSWORD=admin