Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rizkinugrohho/laravel10-vue3-form

Coding Challenge
https://github.com/rizkinugrohho/laravel10-vue3-form

Last synced: 3 days ago
JSON representation

Coding Challenge

Awesome Lists containing this project

README

        

# Laravel 10 + Vue 3

Coding Challenge built with Laravel, Vue.js and Alpine.js.

## Demo
https://github.com/rizkinugrohho/Laravel10-Vue3-Form/assets/36374356/8695847a-a06a-4b39-806f-ee4841155057

## Installation

Make sure you have environment setup properly. You will need MySQL, PHP8.1, Node.js and composer.

### Install Laravel Website + API

1. Download the project (or clone using GIT)
2. Go to the Laravel directory `cd laravel10-api` folder
3. Copy `.env.example` into `.env` and configure database credentials
4. Navigate to the project's root directory using terminal
5. Run `composer install`
6. Set the encryption key by executing `php artisan key:generate --ansi`
7. Run migrations `php artisan migrate --seed`
8. Start local server by executing `php artisan serve`
9. Open new terminal and navigate to the project root directory

### Install Vue.js

1. Navigate to `cd vue3-frontend` folder
2. Run `npm install`
3. Make sure `baseURL` key in `src/api/index.js` is set to your Laravel API host (Default: http://localhost:8000)
4. Run `npm run dev`
5. Open Vue.js (Default: http://localhost:5173)