Skip to content

Commit 7d28e90

Browse files
committed
Write some docs #2
1 parent 97144d5 commit 7d28e90

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Laravel API Boilerplate
2+
```
3+
A boilerplate to develop secured and conventional API on top of Laravel 5.6.
4+
```
5+
Dependencies:
6+
* PHP ~7.1.0
7+
* [Laravel 5.6](https://laravel.com/docs/5.6/)
8+
* [JWT Auth 1.0.*](https://github.com/tymondesigns/jwt-auth) Package
9+
* [Dingo Api](https://github.com/dingo/api) Package
10+
11+
## Usage
12+
### 1. Clone the project
13+
```bash
14+
git clone https://github.com/mystroken/laravel-api-boilerplate.git destination_folder
15+
```
16+
### 2. Install project dependencies
17+
```bash
18+
composer install
19+
```
20+
### 3. Configure the project
21+
```
22+
php artisan key:generate
23+
```
24+
```
25+
php artisan jwt:secret
26+
```
27+
28+
```config/api.php```
29+
30+
```config/jwt.php```

0 commit comments

Comments
 (0)