Quick Start
1. Requirements
System Requirements:
- Please check Symfony documentation it has a few system requirements https://symfony.com/doc/current/index.html
Server
- Make sure to have the Xampp OR Wamp installed & running in your computer.
- If you already have installed Xampp / Wamp server on your computer, you can skip this step.
Composer
- Make sure to have the Composer installed & running in your computer. If you already have installed composer on your computer, you can skip this step.
Scoop
- Make sure to have the Scoop installed & running in your computer. If you already have installed composer on your computer, you can skip this step.
Symfony CLI
- Make sure to have the Symfony CLI installed & running in your computer. If you already have
installed composer on your computer, you can skip this step.
scoop install symfony-cli
2. Install
To initiate the process, access the Admin folder and proceed to install its dependencies using terminal. We recommend utilizing either npm for this task.
This would install all the required packages in the vendor folder.
composer install
Run the below commands to install dependencies and compile the assets:
npm install
npm run dev // this is for development
npm run build // this is to generate the build of assets for production.
3. Start
Run the project locally. The development server is accessible at http://localhost:8000/:
symfony server:start