Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jamiewarb/laravel-vue-spa-inuitcss
A starter template for a Laravel 5.5 + Vue SPA, with INUITCSS
https://github.com/jamiewarb/laravel-vue-spa-inuitcss
Last synced: 10 days ago
JSON representation
A starter template for a Laravel 5.5 + Vue SPA, with INUITCSS
- Host: GitHub
- URL: https://github.com/jamiewarb/laravel-vue-spa-inuitcss
- Owner: Jamiewarb
- License: mit
- Created: 2017-11-15T11:52:13.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-12T10:44:08.000Z (almost 7 years ago)
- Last Synced: 2024-11-07T03:46:58.913Z (about 2 months ago)
- Language: PHP
- Homepage:
- Size: 735 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Portal
## Features
- Laravel 5.5 + Vue + Vue Router + Vuex
- Pages with custom layouts
- Login, register and password reset
- Skeleton setup of [INUITCSS 6.0.0_beta5](https://github.com/inuitcss/inuitcss)
- Integration with [vform](https://github.com/cretueusebiu/vform)
- Authentication with [JWT](https://github.com/tymondesigns/jwt-auth)
- Webpack with [laravel-mix](https://github.com/JeffreyWay/laravel-mix)
- SVG icons with [svg-sprite-loader](https://github.com/kisenka/svg-sprite-loader)## Installation
- `git clone [email protected]:Jamiewarb/laravel-vue-spa-inuitcss`
- `cd laravel-vue-spa-inuitcss`
- `cp .env.example .env`
- `composer install`
- `php artisan key:generate`
- `php artisan jwt:secret`
- Edit `.env` and set your database connection details
- `php artisan migrate`
- `yarn install | npm install`
- `cp node_modules/inuitcss/settings/_example.settings.config.scss resources/assets/sass/settings/_settings.config.scss`## Usage
#### Development
```bash
# build and watch
yarn run watch# serve with hot reloading
yarn run hot
```#### Production
```bash
yarn run production
```## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.
## Credits
Based heavily on [laravel-vue-spa](https://github.com/cretueusebiu/laravel-vue-spa) from cretueusebiu