-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv
More file actions
116 lines (91 loc) · 3.81 KB
/
env
File metadata and controls
116 lines (91 loc) · 3.81 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
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
#--------------------------------------------------------------------
# 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
#--------------------------------------------------------------------
# CI_ENVIRONMENT = production
# If your request requires a long timeout, change this setting.
# CURLOPT_TIMEOUT = 120
#--------------------------------------------------------------------
# HYPER CMS
#--------------------------------------------------------------------
# Your app name, e.g., Hyper CMS.
# hyper.appName = ''
# Your app version, e.g., 1.0.0.
# hyper.appVersion = ''
# hyper.activeModules = 'Voltic'
# hyper.safeMode = false
# File Manager
# fileManager.productionPath = '{FCPATH}uploads'
# fileManager.nonProductionPath = '{ROOTPATH}'
# StarDust
# StarDust.usersTable = 'users'
# StarDust.usersIdColumn = 'id'
# StarDust.usersUsernameColumn = 'username'
# StarDust.asyncIndexing = true
# StarDust.workerToken = 'hyper'
#--------------------------------------------------------------------
# APP
#--------------------------------------------------------------------
# app.baseURL = ''
# If you have trouble with `.`, you could also use `_`.
# app_baseURL = ''
# app.defaultLocale = en
# app.forceGlobalSecureRequests = false
# app.CSPEnabled = false
#--------------------------------------------------------------------
# DATABASE
#--------------------------------------------------------------------
# If you use Docker, use underscores (_) in variable names instead of periods (.).
# The following variables are used by Docker to build the image.
# database_default_hostname = localhost
# database_default_database = ci4
# database_default_username = root
# database_default_password = root
# database_default_DBDriver = MySQLi
# database_default_DBPrefix =
# database_default_port = 3306
# If you use MySQLi as tests, first update the values of Config\Database::$tests.
# database.tests.hostname = localhost
# database.tests.database = ci4_test
# database.tests.username = root
# database.tests.password = root
# database.tests.DBDriver = MySQLi
# database.tests.DBPrefix =
# database.tests.charset = utf8mb4
# database.tests.DBCollat = utf8mb4_general_ci
# database.tests.port = 3306
#--------------------------------------------------------------------
# ENCRYPTION
#--------------------------------------------------------------------
# encryption.key =
#--------------------------------------------------------------------
# SESSION
#--------------------------------------------------------------------
# session.driver = 'CodeIgniter\Session\Handlers\FileHandler'
# session.savePath = null
# If you run multiple instances on the same domain,
# ensure each instance uses a unique cookie name
# to avoid session conflicts.
# session_cookieName = 'hyper_session'
#--------------------------------------------------------------------
# LOGGER
#--------------------------------------------------------------------
# logger.threshold = 4
#--------------------------------------------------------------------
# DOCKER
#--------------------------------------------------------------------
# The following variables are used by Docker to build the image.
# If you run Hyper on a different port or address, change this setting.
# HYPER_SERVICE_URL = 'http://localhost:8080'
# Make sure to create a strong password for the root account and update it regularly.
# MYSQL_ROOT_PASSWORD = hyper_root_12345