https://github.com/ronald-kimeli/book-manager
https://github.com/ronald-kimeli/book-manager
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ronald-kimeli/book-manager
- Owner: ronald-kimeli
- Created: 2023-12-28T22:08:32.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-28T22:17:43.000Z (over 1 year ago)
- Last Synced: 2025-01-16T20:57:29.998Z (5 months ago)
- Language: CSS
- Size: 5.39 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Installation
Book Manager is a Full Stack Web application using laravel api and vue js 3 for managing Books
* Clone this repository to your local computer
```bash
git clone https://github.com/ronald-kimeli/book-manager.git
```* Navigate to laravel api backend.
```bash
cd laravel-api
```* Install necessary dependencies
```bash
composer install
```* Set the application Key for laravel to run
```bash
php artisan key:generate
```* Copy and set .env from .env.example
```bash
cp .env.example .env
```* Set your database credentials
* Run migation and seed database for dummy data
```bash
php artisan migrate --seed
```* Spin the server then Laravel is ready for connection
```bash
php artisan serve
```## Vue Frontend
* Navigate to vue frontend on the other terminal
```bash
cd vue_frontend
```* Install necessary dependencies
> You can use either yarn or npm according to your preferences
```bash
yarn
```or
```bash
npm install
```* Then, spin server and navigate to the browser **localhost:3000**
```bash
yarn dev
```or
```bash
npm run dev
```### Testing application
Since we seeded the database with dummy data.
```bash
[email protected] => 12345678
```### Postman Collection
```bash
Book Manager.postman_collection.json
```