Installation
Given below are the steps you need to follow to install the full-version on your system:
System Requirements / Prerequisites
Node 20.10.0
Composer 2.6.6
PHP 8.2.12
Installation
Navigate to your project folder.
Install packages using following two commands.
composer install
npm install
Update
.env
as per your DB settingRun the following command to generate the key.
Local development
You can run your development server using the dev command. This is useful for local development. The development server automatically detects changes to files and instantly displays them in all open browser windows.
To serve Laravel, you need to run following command as well in separate terminal:
This will run your local server at http://127.0.0.1:8000 Also, the Terminal shows something like this.
Deployment for Production
The assets in your application will be versioned, bundled, and prepared for production deployment when you run the build command:
Last updated