All Projects → vcian → laravel-vue-spa-boilerplate

vcian / laravel-vue-spa-boilerplate

Licence: MIT license
Laravel Vue Spa BoilerPlate

Programming Languages

PHP
23972 projects - #3 most used programming language
Vue
7211 projects
TSQL
950 projects

Projects that are alternatives of or similar to laravel-vue-spa-boilerplate

react-nodejs-mongodb-crud
👨‍💻 Fullstack web app built with MongoDB, NodeJs, React and Redux. Features: Protected routes client/server side, MaterialUI layout
Stars: ✭ 91 (+152.78%)
Mutual labels:  spa, jwt-authentication
rethinkdb-express-api-boilerplate
rethinkdb express api boilerplate
Stars: ✭ 23 (-36.11%)
Mutual labels:  jwt-authentication, api-boilerplate
Laravel Vue Starter
Well Documented Laravel Starter App From Development to Production. For Full Blown RESTFUL API and SPA with Beautiful UI Using Buefy / ElementUi For Reusable Vue Components
Stars: ✭ 76 (+111.11%)
Mutual labels:  spa, jwt-authentication
laravel-vue-starter
Well Documented Laravel Starter App From Development to Production. For Full Blown RESTFUL API and SPA with Beautiful UI Using Buefy / ElementUi For Reusable Vue Components
Stars: ✭ 80 (+122.22%)
Mutual labels:  spa, jwt-authentication
Go Vue Starter
Starter project - Golang api, Vue.js client with user management and jwt authentication
Stars: ✭ 176 (+388.89%)
Mutual labels:  spa, jwt-authentication
Cloudtunes
Web-based music player for the cloud ☁️ 🎶 Play music from YouTube, Dropbox, etc.
Stars: ✭ 2,449 (+6702.78%)
Mutual labels:  spa
Butterfly Server
The Everything is Real-Time C# Backend for Single Page Applications
Stars: ✭ 247 (+586.11%)
Mutual labels:  spa
Webhook.site
⚓️ Easily test HTTP webhooks with this handy tool that displays requests instantly.
Stars: ✭ 2,842 (+7794.44%)
Mutual labels:  spa
Maka
Maka.js是基于react的一个前端微服务开发框架(makajs.com)
Stars: ✭ 200 (+455.56%)
Mutual labels:  spa
react-redux-boilerplate
A React boilerplate based on Redux, React Router, styled components and Parcel
Stars: ✭ 62 (+72.22%)
Mutual labels:  spa
Laravel Vue Spa
A Laravel-Vue SPA starter kit.
Stars: ✭ 2,889 (+7925%)
Mutual labels:  spa
Productivity Frontend
Productivity Application - Kanban Style Productivity Management Application with Customizable Boards, Lists and Cards to Make You More Productive.
Stars: ✭ 234 (+550%)
Mutual labels:  spa
Ioing
Implement the solutions of performance improvement and componentization for your SPA (single page application) products with this Progressive Web App Development Engine.
Stars: ✭ 224 (+522.22%)
Mutual labels:  spa
Terraform Aws Cognito Auth
Serverless Authentication as a Service (AaaS) provider built on top of AWS Cognito
Stars: ✭ 248 (+588.89%)
Mutual labels:  spa
Auth0 Vue Samples
Auth0 Integration Samples for Vue.js Applications
Stars: ✭ 215 (+497.22%)
Mutual labels:  spa
MyAPI
A template to create awesome APIs easily ⚡️
Stars: ✭ 117 (+225%)
Mutual labels:  jwt-authentication
Koa Vue Notes Web
🤓 This is a simple SPA built using Koa as the backend, Vue as the first frontend, and React as the second frontend. Features MySQL integration, user authentication, CRUD note actions, and Vuex store modules.
Stars: ✭ 200 (+455.56%)
Mutual labels:  spa
The Elmish Book
A practical guide to building modern and reliable web applications in F# from first principles
Stars: ✭ 231 (+541.67%)
Mutual labels:  spa
Vuetober
A webpack starting point for single page apps with October CMS and Vue
Stars: ✭ 251 (+597.22%)
Mutual labels:  spa
Mmf Blog Vue2
mmf-blog vue2.0 (vue2, vue-router, vuex)
Stars: ✭ 232 (+544.44%)
Mutual labels:  spa

Laravel-Vue-Spa-Boilerplate

Getting started

Introduction

  • This is a Laravel (5.5) Vue js SPA(Single page application) Boilerplate Project with JWT Authentication.

Installation

Please check the official laravel installation guide for server requirements before you start. Official Documentation

Clone the repository

git clone https://github.com/viitoradmin/laravel-vue-spa-boilerplate.git

Switch to the repo folder

cd laravel-vue-spa-boilerplate

Install all the dependencies using composer

composer install

Copy the example env file and make the required configuration changes in the .env file

cp .env.example .env

Generate a new application key

php artisan key:generate

Generate a new JWT authentication secret key

php artisan jwt:generate

If you have linux system, you can execute below command only in your project root

1) sudo chmod -R 777 install.sh
2) ./install.sh

Run Artisan Command for database setup, connection and configuration.

php artisan install:app

Please add proper information while performing above command.

or you can setup manually using below command

Run the database migrations (Set the database connection in .env before migrating)

php artisan migrate

Start the local development server

php artisan serve

You can now access the server at http://localhost:8000

For Windows system command list

git clone https://github.com/viitoradmin/laravel-vue-spa-boilerplate.git
cd laravel-vue-spa-boilerplate
composer install
cp .env.example .env
php artisan key:generate
php artisan jwt:secret

Make sure you set the correct database connection information before running the migrations Environment variables

php artisan migrate
php artisan serve

Demo Credentials

Email:- [email protected]

Password:- 123456

Environment variables

  • .env - Environment variables can be set in this file

Note : You can quickly set the database information and other variables in this file and have the application fully working.

Repository Creation

  • If you want to create "Base Repository" and BaseRepository.php not exist in your project at that time, you can execute below command. php artisan make:repository BaseRepository -b
  • If you want to create repository for any module, you can execute below command php artisan make:repository
  • If you want to create repository inside "Asset" folder, php artisan make:repository Asset\
  • If you want to create repository directly inside "Repository" folder, php artisan make:repository

Authentication

This applications uses JSON Web Token (JWT) to handle authentication. The token is passed with each request using the Authorization header with Token scheme. The JWT authentication middleware handles the validation and authentication of the token. Please check the following sources to learn more about JWT.

Issues

If you come across any issues please report them here.

Contributing

Feel free to create any pull requests for the project. For proposing any new changes or features you want to add to the project, you can send us an email at [email protected] or [email protected]

License

MIT LICENSE

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].