https://github.com/dodycode/vue-laravel-auth
Single Page Auth App
https://github.com/dodycode/vue-laravel-auth
Last synced: 8 months ago
JSON representation
Single Page Auth App
- Host: GitHub
- URL: https://github.com/dodycode/vue-laravel-auth
- Owner: dodycode
- Created: 2019-08-04T12:36:52.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T06:15:00.000Z (over 3 years ago)
- Last Synced: 2024-12-28T04:25:59.600Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 3.65 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vue-laravel-auth
Authentication App that use vuejs as a frontend framework and Laravel as a backend RESTFUL API. This project made for practice purposes.
### Materials
* [Laravel](https://laravel.com)
* [Vue JS](https://vuejs.org/)
* [VueX](https://vuex.vuejs.org/)
* [Vue Router](https://router.vuejs.org/)
* [Axios](https://github.com/axios/axios)
* [Tailwind CSS](https://tailwindcss.com/)
## Default User
```
email: laravuex@admin.com
pass: password
```
## Setup Laravel
```
composer install
```
### Re-generates autoload to read seeder classes
```
composer dump-autoload
```
### set-up .env
```
cp .env.example .env
```
```
DB_DATABASE=yourdbname
DB_USERNAME=cooluser
DB_PASSWORD=secretpassword
```
### Migrate
```
php artisan migrate --seed
```
### Setup Laravel Mix and other dependencies
```
npm install
```
### Run Laravel and NodeJS for Laravel Mix
```
php artisan serve
npm run watch
```