Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Latest commit

 

History

History
42 lines (34 loc) · 1.4 KB

configuration.md

File metadata and controls

42 lines (34 loc) · 1.4 KB

Configuration File Guide

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.

File Format

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 (=).

Example

database_host=localhost
database_username=root
database_password=password
Configuration Settings

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).