Getting Started
Setup Hybrix - Codeigniter 4
Hybrix is built with Bootstrap 5.3.3 and Codeigniter 4.4 with developer friendly code.
Prerequisites:
Please follow the below steps to install and setup all prerequisites:
-
Xampp
Make sure to have Xampp with PHP v8.0 or higher version installed & running on your computer. If you already have installed Xampp on your computer, you can skip this step.
-
Composer
Make sure to have the Composer installed & running on your computer. If you already have installed Composer on your computer, you can skip this step.
After you finished with the above steps, you can run the following commands into the terminal/command prompt from the root directory ( Codeigniter / Admin ) of the project to run the project locally or build for production use:
| Command | Description |
|---|---|
composer install
|
This would install all the required packages in
the vendor folder.If you getting any error when running composer install command, don't worry please continue with : composer update
|
php spark serve
|
Runs the project locally. The development server is accessible at http://localhost:8080. |
php spark serve --port 8081
|
If You Wish to Runs the project locally on Different Port. The development server is accessible at http://localhost:8081. |