https://github.com/rayhanyulanda/inisev-api
https://github.com/rayhanyulanda/inisev-api
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/rayhanyulanda/inisev-api
- Owner: RayhanYulanda
- Created: 2022-07-26T12:42:15.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-27T05:05:13.000Z (almost 4 years ago)
- Last Synced: 2025-02-01T17:44:03.584Z (over 1 year ago)
- Language: PHP
- Size: 99.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Postman : https://www.getpostman.com/collections/efd33e82ff35d8994d6a
## Prerequisites
- [php](https://www.php.net/downloads.php)
- [laravel](http://laravel.com/)
- [composer](https://getcomposer.org/download/)
## Installation
- Database for the project `Example : example_db`
- Clone [repo](https://github.com/RayhanYulanda/inisev-api).
- `cd name-folder`.
- Run the command.
```bash
composer install
```
- Copy file `.env.example` and paste it to `.env`
- Adjust the information in `.env` file
```env
APP_NAME="Laravel"
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_URL=https://example.com
```
- Generate app key
```bash
php artisan key:generate
```
- Make the table and fill it with seed
```bash
php artisan migrate:fresh --seed
```