You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+11-2Lines changed: 11 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,9 @@
14
14
composer install
15
15
```
16
16
- Rename `.env.example` file to `.env`
17
+
```
18
+
cp .env.example .env
19
+
```
17
20
- Run this command to generate key
18
21
```
19
22
php artisan key:generate
@@ -31,8 +34,14 @@ php artisan tinker
31
34
```
32
35
factory(App\Book::class, 20)->create();
33
36
```
34
-
- I used [barryvdh/laravel-cors](https://github.com/barryvdh/laravel-cors) to enable `cors`. please go to this link and follow documentation to enable `cors`.
35
-
- I used [laravel/passport](https://github.com/laravel/passport) to generate valid `token`.
37
+
- I used [laravel/passport](https://github.com/laravel/passport) to generate valid `token`. Please run these command to configure passport.
0 commit comments