-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv
More file actions
53 lines (44 loc) · 1.75 KB
/
env
File metadata and controls
53 lines (44 loc) · 1.75 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
#--------------------------------------------------------------------
# Example Environment Configuration file
#
# This file can be used as a starting point for your own
# custom .env files, and contains most of the possible settings
# available in a default install.
#
# By default, all of the settings are commented out. If you want
# to override the setting, you must un-comment it by removing the '#'
# at the beginning of the line.
#--------------------------------------------------------------------
#--------------------------------------------------------------------
# ENVIRONMENT
#
# 本番: production
# 開発: development
#--------------------------------------------------------------------
CI_ENVIRONMENT=production
#--------------------------------------------------------------------
# APP
#--------------------------------------------------------------------
app.baseURL='https://localhost:8080/'
#--------------------------------------------------------------------
# DATABASE
#
# database.tests は PHPUnit 実行時に使用されるもので
# 俗にいうローカルサーバーや開発サーバーなどのテストサーバーとは異なります
#--------------------------------------------------------------------
database.default.hostname=localhost
database.default.database=ci4
database.default.username=root
database.default.password=root
database.default.DBPrefix=
database.default.port=3306
# database.tests.hostname=localhost
# database.tests.database=ci4_test
# database.tests.username=root
# database.tests.password=root
# database.tests.DBPrefix=
# database.tests.port=3306
#--------------------------------------------------------------------
# LOGGER
#--------------------------------------------------------------------
logger.threshold=4