Getting Started
Setup Hybrix - Symfony 6.4
Hybrix is built with Bootstrap v5.3.3 and Symfony 6.4 with developer friendly code.
Prerequisites:
Please follow the below steps to install and setup all prerequisites:
-
Technical Requirements
Please check the Technical Requirements from the this link. https://symfony.com/doc/current/setup.html#technical-requirements
-
Xampp
Make sure to have Xampp with PHP v8.2 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.
-
Install Symfony CLI
Please setup Symfony CLI regarding your computer operating system. https://symfony.com/download. If you already have setup 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 ( Symfony / 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
|
symfony server:start
|
Runs the project locally. The development server is accessible at http://localhost:8000. |
symfony server:start --port=8001
|
If You Wish to Runs the project locally on Different Port. The development server is accessible at http://localhost:8001. |