-
Notifications
You must be signed in to change notification settings - Fork 65
/
.env.example
177 lines (163 loc) · 5.21 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
# In all environments, the following files are loaded if they exist,
# the latter taking precedence over the former:
#
# * .env contains default values for the environment variables needed by the app
# * .env.local uncommitted file with local overrides
# * .env.$APP_ENV committed environment-specific defaults
# * .env.$APP_ENV.local uncommitted environment-specific overrides
#
# Real environment variables win over .env files.
#
# DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES.
#
# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2).
# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration
###> symfony/framework-bundle ###
APP_ENV=prod
APP_SECRET=eb2f09f8a21b0b7c57b9fc36eee250eb
#TRUSTED_PROXIES=127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16
#TRUSTED_HOSTS='^(localhost|example\.com)$'
###< symfony/framework-bundle ###
###> symfony/mailer ###
# MAILER_DSN=smtp://localhost
###< symfony/mailer ###
###> doctrine/doctrine-bundle ###
# Format described at https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
# For an SQLite database, use: "sqlite:///%kernel.project_dir%/var/data.db"
# For a PostgreSQL database, use: "postgresql://db_user:[email protected]:5432/db_name?serverVersion=11&charset=utf8"
# IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml
DATABASE_URL=mysql://root:root@db:3306/udoit3
###< doctrine/doctrine-bundle ###
### PRIVATE KEY PASSWORD: UDOIT3.0 ###
###> udoit ###
APP_LMS=canvas
APP_OAUTH_REDIRECT_PATH="/authorize/check"
APP_LTI_REDIRECT_PATH="/lti/authorize/check"
APP_LTI_NAME="UDOIT 3"
ADMIN_LTI_NAME="UDOIT 3 Admin"
USE_DEVELOPMENT_AUTH="no"
VERSION_NUMBER="3.3.1"
###> symfony/messenger ###
MESSENGER_TRANSPORT_DSN=doctrine://default
###< symfony/messenger ###
###> phpally ###
# Rule exclusion list as a comma-separated list of rule IDs.
PHPALLY_EXCLUDED_RULES="
BrokenLink,
RedirectedLink
"
# Rules to be treated as suggestions rather than errors. Comma-separated list of rule IDs.
PHPALLY_SUGGESTION_RULES="
AnchorLinksToMultiMediaRequireTranscript,
AnchorLinksToSoundFilesNeedTranscripts,
AnchorSuspiciousLinkText,
ContentTooLong,
IframeNotHandled,
InputImageNotDecorative,
NoHeadings,
ObjectTagDetected,
ParagraphNotUsedAsHeader,
PreShouldNotBeUsedForTabularValues,
RedirectedLink,
EmbedTagDetected,
IframeNotHandled,
"
# Rules that are easiest to tackle when using UDOIT. Comma-separated list of rule IDs.
EASY_FIX_RULES="
AnchorMustContainText,
AnchorSuspiciousLinkText,
CssTextHasContrast,
CssTextStyleEmphasize,
HeadersHaveText,
ImageAltIsDifferent,
ImageAltIsTooLong,
ImageHasAlt,
ImageHasAltDecorative,
ParagraphNotUsedAsHeader,
ImageAltNotPlaceholder,
"
# Rules that impact people with visual disabilities. Comma-separated list of rule IDs.
VISUAL_RULES="
AnchorMustContainText,
AnchorSuspiciousLinkText,
BaseFontIsNotUsed,
CssTextHasContrast,
CssTextStyleEmphasize,
FontIsNotUsed,
HeadersHaveText,
HeadingsInOrder,
ImageAltIsDifferent,
ImageAltIsTooLong,
ImageAltNotEmptyInAnchor,
ImageAltNotPlaceholder,
ImageHasAlt,
ImageHasAltDecorative,
ImageHasLongDescription,
InputImageNotDecorative,
NoHeadings,
ObjectTagDetected,
ParagraphNotUsedAsHeader,
PreShouldNotBeUsedForTabularValues,
TableDataShouldHaveTableHeader,
TableHeaderShouldHaveScope,
"
# Rules that impact people with auditory disabilities. Comma-separated list of rule IDs.
AUDITORY_RULES="
AnchorLinksToMultiMediaRequireTranscript,
AnchorLinksToSoundFilesNeedTranscripts,
ObjectMustContainText,
ObjectTagDetected,
VideoCaptionsMatchCourseLanguage,
VideoEmbedCheck,
VideoProvidesCaptions,
VideosEmbeddedOrLinkedNeedCaptions,
VideosEmbeddedOrLinkedNeedCaptions,
VideosHaveAutoGeneratedCaptions,
"
# Rules that impact people with cognitive disabilities. Comma-separated list of rule IDs.
COGNITIVE_RULES="
BaseFontIsNotUsed,
BlinkIsNotUsed,
ContentTooLong,
DocumentReadingDirection,
FontIsNotUsed,
HeadingsInOrder,
MarqueeIsNotUsed,
NoHeadings,
ObjectTagDetected,
ParagraphNotUsedAsHeader,
TableDataShouldHaveTableHeader,
TableHeaderShouldHaveScope,
"
# Rules that impact people with motor disabilities. Comma-separated list of rule IDs.
MOTOR_RULES="
ObjectTagDetected,
"
###< phpally ###
###> i18n ###
DEFAULT_LANG="en"
###> i18n ###
###> date format ###
DATE_FORMAT="Y-m-d"
###> date format ###
###> base url ###
# Base URL for client callbacks
BASE_URL="http://127.0.0.1:8000/udoit3"
# Webpack public path
WEBPACK_PUBLIC_PATH="/udoit3/build"
###> base url ###
###> user name storage ###
# Used for storing the user's name
STORE_USER_NAMES=true
###< user name storage ###
###> color defaults ###
BACKGROUND_COLOR="#ffffff"
TEXT_COLOR="#2D3B45"
###> color defaults ###
###> api keys ###
VIMEO_API_KEY=""
YOUTUBE_API_KEY=""
###> api keys ###
###> jwk base url ###
JWK_BASE_URL="https://canvas.instructure.com/"
###> jwk base url ###