forked from chamilo/chamilo-lms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
53 lines (39 loc) · 1.27 KB
/
.env
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
# Set variables here that may be different on each deployment target of the app, e.g. development, staging, production.
# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
###> doctrine/doctrine-bundle ###
# Format described at http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
DATABASE_HOST='{{DATABASE_HOST}}'
DATABASE_PORT='{{DATABASE_PORT}}'
DATABASE_NAME='{{DATABASE_NAME}}'
DATABASE_USER='{{DATABASE_USER}}'
DATABASE_PASSWORD='{{DATABASE_PASSWORD}}'
###< doctrine/doctrine-bundle ###
###> symfony/swiftmailer-bundle ###
MAILER_TRANSPORT='sendmail'
MAILER_USERNAME=''
MAILER_PASSWORD=''
MAILER_HOST=''
MAILER_PORT=''
###< symfony/swiftmailer-bundle ###
###> symfony/framework-bundle ###
APP_ENV='dev'
APP_DEBUG='1'
APP_SECRET='{{APP_SECRET}}'
###< symfony/framework-bundle ###
###> chamilo ###
APP_INSTALLED='{{APP_INSTALLED}}'
## Encrypt method bcrypt/sha1/md5
APP_ENCRYPT_METHOD='{{APP_ENCRYPT_METHOD}}'
APP_LOCALE='en'
## Example: '/chamilo2'
APP_URL_APPEND='{{APP_URL_APPEND}}'
APP_MULTIPLE_ACCESS_URL=''
###< chamilo ###
###> hwi/oauth-bundle ###
FB_ID=''
FB_SECRET=''
GITHUB_ID=''
GITHUB_SECRET=''
GOOGLE_ID=''
GOOGLE_SECRET=''
###< hwi/oauth-bundle ###