Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drehimself/laravel-movies-example
Code for YouTube series on building a Laravel Movie Application
https://github.com/drehimself/laravel-movies-example
laravel laravel7
Last synced: 6 days ago
JSON representation
Code for YouTube series on building a Laravel Movie Application
- Host: GitHub
- URL: https://github.com/drehimself/laravel-movies-example
- Owner: drehimself
- Created: 2020-03-25T07:17:59.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-19T04:56:04.000Z (over 4 years ago)
- Last Synced: 2024-12-17T16:08:04.388Z (13 days ago)
- Topics: laravel, laravel7
- Language: PHP
- Homepage: https://www.youtube.com/playlist?list=PLEhEHUEU3x5pYTjZze3fhYMB4Nl_WOHI4
- Size: 2.63 MB
- Stars: 257
- Watchers: 11
- Forks: 147
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![screenshot](https://user-images.githubusercontent.com/4316355/78681326-98bd1480-78ba-11ea-9cd8-3052397a87a7.png)
# Laravel Movies Example
Code for YouTube video series: https://www.youtube.com/playlist?list=PLEhEHUEU3x5pYTjZze3fhYMB4Nl_WOHI4
Demo URL: https://movies.andredemos.ca
## Installation
1. Clone the repo and `cd` into it
1. `composer install`
1. Rename or copy `.env.example` file to `.env`
1. Set your `TMDB_TOKEN` in your `.env` file. You can get an API key [here](https://www.themoviedb.org/documentation/api). Make sure to use the "API Read Access Token (v4 auth)" from the TMDb dashboard.
1. `php artisan key:generate`
1. `php artisan serve` or use Laravel Valet or Laravel Homestead
1. Visit `localhost:8000` in your browser## Starting from a particular point
If you would like to follow along and start from a particular point, follow these instructions. You can choose any point by replacing the hash with [any particular commit](https://github.com/drehimself/laravel-movies-example/commits/master). The commits correspond to the different video parts (mostly).
1. Clone the repo and `cd` into it
1. `git checkout 22fa456`