A simple Laravel app for book reservations.
Here is a short tutorial how to seup this project locally. It is expected you have SSH access, installed Composer with Laravel version 7 and PHP version 7, Git and a web server like Apache or Nginx.
First you have to clone the repository with:
git clone https://github.com/marincapan/BookInc.git
Second, you have to run:
composer install
Since this project has a few Vue.js components for the UI, you also have to run:
npm isntall
Please open a new MySQL database because you will need it. Also, make a new .env file with:
cp .env.example .env
and don't forget to fill it with information for your database connection.
Now you can generate a new key for you application:
php artisan key:generate
and migrate the schemas to your database with:
php artisan migrate
and in the end when you setup your Apache/Nginx web server you can run it with:
php artisan serve
The application will probably be available at localhost:8000