Full Stack Web App Starter in Vue.js / Laravel with Argon Design System
The backend server is a simple Laravel with JWT authentication, MySql database, Native ORM, unit tests and basic tooling.
$ git clone https://github.com/app-generator/laravel-boilerplate.git
$ cd laravel-boilerplate
$ vi .env # setup DB connection and JWT
$ composer install # install modules
$ php artisan key:generate # setup Laravel
$ php artisan migrate:fresh --seed # create database
$ cd public
$ php -S localhost:3000 # start the server
The frontend is a simple Vue app enhanced with JWT Authentication with fully functional login & registration flow.
$ git clone https://github.com/app-generator/vuejs-argon-design-system.git
$ cd vuejs-argon-design-system
$ yarn
$ yarn start # Frontend runs on port 8080
Full Stack Web App Starter in Vue.js / Laravel with Argon Design System