From cd3af0538b1d54d4145fc309f54c88c10563afcc Mon Sep 17 00:00:00 2001 From: mahdahar <89adham@gmail.com> Date: Tue, 12 Nov 2024 09:25:38 +0700 Subject: [PATCH] add env --- .gitignore | 1 + env | 80 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 81 insertions(+) create mode 100644 env diff --git a/.gitignore b/.gitignore index 6980028..0766324 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ !public/ !padma-cmod.7z !.gitignore +!env !cmod-td.sql \ No newline at end of file diff --git a/env b/env new file mode 100644 index 0000000..93bad64 --- /dev/null +++ b/env @@ -0,0 +1,80 @@ +#-------------------------------------------------------------------- +# 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 = development + +#-------------------------------------------------------------------- +# APP +#-------------------------------------------------------------------- + +# app.baseURL = '' +app.baseURL = 'http://cmod.local' +# If you have trouble with `.`, you could also use `_`. +# app_baseURL = '' +# app.forceGlobalSecureRequests = false +# app.CSPEnabled = false + +#-------------------------------------------------------------------- +# DATABASE +#-------------------------------------------------------------------- + +# 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 + +database.default.hostname = localhost +database.default.database = glendb +database.default.username = sa +database.default.password = master +database.default.DBDriver = SQLSRV +database.default.encrypt = false +#database.default.DBPrefix = +database.default.pconnect = false +database.default.port = 1433 + +#-------------------------------------------------------------------- +# ENCRYPTION +#-------------------------------------------------------------------- + +# encryption.key = + +#-------------------------------------------------------------------- +# SESSION +#-------------------------------------------------------------------- + +# session.driver = 'CodeIgniter\Session\Handlers\FileHandler' +# session.savePath = null + +#-------------------------------------------------------------------- +# LOGGER +#-------------------------------------------------------------------- + +# logger.threshold = 4