The configuration file is a crucial part of the Zora App, as it stores essential settings and parameters that control the app's behavior. This file is named config.zoraConfig
and is located in the root directory of your container.
The configuration file is a plain text file with a simple key-value format. Each line represents a single configuration setting, with the key and value separated by an equals sign (=).
database_host=localhost
database_username=root
database_password=password
Here is a brief explanation of each configuration setting:
- database_host
The hostname or IP address of your database server.
- database_username:
The username to use for database authentication.
- database_password
The password to use for database authentication.
- database_name
The name of the database to use.
- api_key
A unique API key for authenticating API requests.
- api_secret
A secret key for encrypting API data.
- app_name
The name of your Zora App instance.
- app_version
The version number of your Zora App instance.
- app_description
A brief description of your Zora App instance.
- debug_mode
A boolean flag to enable or disable debug mode.
- debug_level
An integer value representing the debug level (1-5).