CI_ENVIRONMENT = production # Used by CodeIgniter. Valid values include development, testing, and production. APP_ENVIRONMENT = production # Used by application code. Values can be "production" or "qa". TIMEZONE = "America/New_York" # View time zones here (use TZ database name column) https://en.wikipedia.org/wiki/List_of_tz_database_time_zones DB_HOST = "localhost" # Used by CodeIgniter. The database host URI. DB_NAME = "public" # Used by CodeIgniter. The name of the database you want to use. DB_USER = "root" # Used by CodeIgniter. The database username to log in with. DB_PASS = "admin" # Used by CodeIgniter. The password for the database user. SITE_DISPLAY_TITLE = "The Butler" # This is the text that will appear in the title of every page in the browser. AWS_ACCESS_KEY_ID = "" # Optional for in-app AWS operations. Not needed if using EC2 Service Role with appropriate permissions. AWS_ACCESS_KEY_SECRET = "" # Optional for in-app AWS operations. Not needed if using EC2 Service Role with appropriate permissions. USE_SSO = 0 # Use SSO (1) or the app's built-in login (0). SSO_AUTH_SERVER_URL = "" # SSO URL we're authenticating against. Not needed if USE_SSO is 0. SSO_REALM = "" # SSO Realm argument. Not needed if USE_SSO is 0. SSO_CLIENT_ID = "" # SSO Client ID argument. Not needed if USE_SSO is 0. SSO_CLIENT_SECRET = "" # SSO Client Secret argument. Not needed if USE_SSO is 0. SSO_REDIRECT_URL = "" # SSO Redirect URL argument. Not needed if USE_SSO is 0. ILS_LOOKUP_CLIENT_ID = "" # Client ID needed to authenticate with ILS Lookup service. ILS_LOOKUP_CLIENT_SECRET = "" # Client Secret needed to authenticate with ILS Lookup service. S3_FILE_TRUNCATION_MB = 50 # Truncate large S3 files when reading to prevent memory issues. LOG_LOOKUP_BASE_URL_DEV = "" # Dev URL of the Log Lookup service. LOG_LOOKUP_BASE_URL_PROD = "" # Prod URL of the Log Lookup service. GIS_LOOKUP_BASE_URL_DEV = "" # Dev URL of the GIS Lookup service. GIS_LOOKUP_BASE_URL_PROD = "" # Prod URL of the GIS Lookup service. APP_MAUTICS_HOST= "patronpoint.com" # Hostname of the Mautic's app. APP_DEV_OAUTH_CLIENTS = '{"client_name": {"public_key": "", "secret_key": ""}}' # JSON object of OAuth clients for dev environment. # Application settings app.forceGlobalSecureRequests = true # Force all requests to be HTTPS. app.baseURL = "https://localhost" # Change to your local URL.