Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marincapan/bookinc
A simple Laravel app for book reservations.
https://github.com/marincapan/bookinc
bootstrap4 css3 html5 laravel7 php7
Last synced: 6 days ago
JSON representation
A simple Laravel app for book reservations.
- Host: GitHub
- URL: https://github.com/marincapan/bookinc
- Owner: marincapan
- License: mit
- Created: 2020-08-18T12:40:56.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-10-29T17:01:32.000Z (about 1 year ago)
- Last Synced: 2025-01-10T04:56:44.036Z (6 days ago)
- Topics: bootstrap4, css3, html5, laravel7, php7
- Language: HTML
- Homepage:
- Size: 36.5 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BookInc
A simple Laravel app for book reservations.
## Local setup
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.### Git
First you have to clone the repository with:
```
git clone https://github.com/marincapan/BookInc.git
```### Composer
Second, you have to run:
```
composer install
```### Node
Since this project has a few Vue.js components for the UI, you also have to run:
```
npm isntall
```### Database
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.### Artisan
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](http://127.0.0.1:8000)## License
[MIT](https://choosealicense.com/licenses/mit/)