#--------------------------------------------------------------------
# ENVIRONMENT
#--------------------------------------------------------------------

CI_ENVIRONMENT = production

#--------------------------------------------------------------------
# APP
#--------------------------------------------------------------------

# This app serves multiple hosts (admin.prospectcrm.app, every tenant
# subdomain). CI4 requires *some* baseURL to be set in production (an
# empty value throws an error rather than auto-detecting, for Host-header
# security reasons) — but the actual value below doesn't matter much,
# since every redirect in this app uses the to_path() helper to stay on
# whatever host the request came in on, bypassing this setting entirely.
app.baseURL = 'https://prospectcrm.app/'

# Matches the rewrite rules already in public/.htaccess — without this,
# generated URLs include index.php even though the rewrite makes it
# unnecessary.
app.indexPage = ''

#--------------------------------------------------------------------
# DATABASE
#--------------------------------------------------------------------

database.default.hostname = 127.0.0.1
database.default.database = prospectcrm
database.default.username = CHANGE_ME
database.default.password = CHANGE_ME
database.default.DBDriver = MySQLi
database.default.DBPrefix =
database.default.port = 3306
