kenken999/php
0
1### Laravel implementation of RealWorld app2 3This Laravel app is part of the [RealWorld](https://github.com/gothinkster/realworld) project and implementation of the [Laravel best practices](https://github.com/alexeymezenin/laravel-best-practices).4 5You might also check [Ruby on Rails version](https://github.com/alexeymezenin/ruby-on-rails-realworld-example-app) of this app.6 7See how the exact same Medium.com clone (called [Conduit](https://demo.realworld.io)) is built using different [frontends](https://codebase.show/projects/realworld?category=frontend) and [backends](https://codebase.show/projects/realworld?category=backend). Yes, you can mix and match them, because **they all adhere to the same [API spec](https://gothinkster.github.io/realworld/docs/specs/backend-specs/introduction)**8 9### How to run the API10 11Make sure you have PHP and Composer installed globally on your computer.12 13Clone the repo and enter the project folder14 15```16git clone https://github.com/alexeymezenin/laravel-realworld-example-app.git17cd laravel-realworld-example-app18```19 20Install the app21 22```23composer install24cp .env.example .env25```26 27Run the web server28 29```30php artisan serve31```32 33That's it. Now you can use the api, i.e.34 35```36http://127.0.0.1:8000/api/articles37```38 