Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iliyazelenko/vue-cli-laravel-todo
Vue CLI 3 + Laravel 5.6 Example TODO project.
https://github.com/iliyazelenko/vue-cli-laravel-todo
bootstrap laravel todo todolist vue
Last synced: 23 days ago
JSON representation
Vue CLI 3 + Laravel 5.6 Example TODO project.
- Host: GitHub
- URL: https://github.com/iliyazelenko/vue-cli-laravel-todo
- Owner: iliyaZelenko
- Created: 2018-08-27T23:18:11.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-26T16:43:33.000Z (almost 6 years ago)
- Last Synced: 2025-01-03T15:53:27.869Z (27 days ago)
- Topics: bootstrap, laravel, todo, todolist, vue
- Language: PHP
- Size: 809 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Features
- Vue cli 3 + Laravel 5.6 integration!
- Example todo app
- Babel 7
- ESLint(standard + plugin vue recommended)
- Stylus with [automatic-imports](https://cli.vuejs.org/guide/css.html#automatic-imports)
- Vue Router
- Bootstrap 4
- [vue-plugin-axios](https://github.com/iliyaZelenko/vue-plugin-axios)
- [Laravel Cors package](https://github.com/barryvdh/laravel-cors)
- Tests with jest + cypress### Installation
1. `git clone https://github.com/iliyaZelenko/vue-cli-laravel-starter.git`
2. `composer install`
3. set db connection and run `php artisan migrate` and `php artisan db:seed`
4. `cd frontend` and `yarn` or `npm install`### To Work With the Laravel
You can start server with `php artisan serve`Set laravel url in **frontend/.env** file(VUE_APP_BACKEND)
### To Work With the Frontend
``` sh
cd frontend# development
yarn serve # OR npm run serve# build for production:
yarn build # OR npm run build
```After build you can see the production version through the laravel url.
![Imgur](https://i.imgur.com/XKjvySZ.png)
![Imgur](https://i.imgur.com/vexNbzz.png)