Installation
Given below are the steps you need to follow to install the full-version on your system:
Installation
Navigate to your project folder.
cd able-pro-laravel-vue/full-versionInstall packages using following two commands.
composer installnpm install
Update
.envas per your DB settingDB_CONNECTION= DB_HOST= DB_PORT= DB_DATABASE= DB_USERNAME= DB_PASSWORD=Run the following command to generate the key.
php artisan key:generate
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.
npm run devTo serve Laravel, you need to run following command as well in separate terminal:
php artisan serveThis will run your local server at http://127.0.0.1:8000 Also, the Terminal shows something like this.
INFO Server running on [http://127.0.0.1:8000].
Press Ctrl+C to stop the serverDeployment for Production
The assets in your application will be versioned, bundled, and prepared for production deployment when you run the build command:
npm run buildLast updated