Kyte is a lightweight framework for building web applications. This README provides a quick guide on how to get started with Kyte.
Follow these steps to set up Kyte on your server:
First, clone the Kyte repository into your web server's document root (e.g., /var/www/html or another directory where your web files are served).
git clone https://github.com/keyqcloud/kyte.git /var/www/html/Navigate to the Kyte directory and run Composer to install the necessary dependencies.
cd /var/www/html/
composer updateCopy the sample configuration file to config.php and edit it to add your database credentials.
cp vendor/keyqcloud/kyte-php/sample-config.php config.phpOpen config.php in your favorite text editor and set your database credentials:
/* DB INTEGRATION */
define('KYTE_DB_USERNAME', '');
define('KYTE_DB_PASSWORD', '');
define('KYTE_DB_HOST', '');
define('KYTE_DB_DATABASE', '');
define('KYTE_DB_CHARSET', 'utf8mb4');You may want to make other configuration changes based on your application's requirements. Review the configuration options in config.php and adjust as necessary.