This repository was archived by the owner on Dec 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
39 lines (32 loc) · 1.27 KB
/
.env.example
File metadata and controls
39 lines (32 loc) · 1.27 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
#--------------------------------------------------------------------
# APP
#--------------------------------------------------------------------
app.baseURL = 'http://localhost:8080/'
app.appTimezone = 'Europe/Paris'
app.forceGlobalSecureRequests = false #If true, this will force every request made to this application to be made via a secure connection (HTTPS)
app.salt = ''
app.defaultLocale = 'en'
#--------------------------------------------------------------------
# DATABASE
#--------------------------------------------------------------------
database.default.hostname = blog_mysqldb
database.default.database = blog
database.default.username = dev
database.default.password = dev
database.default.DBDriver = MySQLi
database.default.port = 3306
#--------------------------------------------------------------------
# DOCKER
#--------------------------------------------------------------------
DOCKER_MYSQL_ROOT_USER=root
DOCKER_MYSQL_ROOT_PASSWORD=root
DOCKER_MYSQL_HOST=blog_mysqldb
DOCKER_MYSQL_NAME=blog
DOCKER_MYSQL_USER=dev
DOCKER_MYSQL_PWD=dev
DOCKER_MYSQL_PORT=4040
DOCKER_TIMEZONE=Europe/Paris
#--------------------------------------------------------------------
# OTHER
#--------------------------------------------------------------------
CI_ENVIRONMENT = development