https://github.com/dammy001/chore
chore movies built with laravel and tailwindcss
https://github.com/dammy001/chore
Last synced: 2 months ago
JSON representation
chore movies built with laravel and tailwindcss
- Host: GitHub
- URL: https://github.com/dammy001/chore
- Owner: dammy001
- Created: 2020-03-31T06:00:46.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2025-03-06T04:41:44.000Z (3 months ago)
- Last Synced: 2025-03-06T05:29:55.867Z (3 months ago)
- Language: PHP
- Homepage: http://choremovies.herokuapp.com
- Size: 1.25 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chore Movies

## Introduction
This is a Movie showcase built with Laravel and TailwindCSS. I hope this becomes an inspiration to you; feel free to use components of this codebase in your future projects. ❤️
## Requirements
* [PHP](https://php.com) - v7.4
* [MySQL](https://mysql.com) - v5.7 above## Installation
>**NOTE**
> * Before the fourth step, you should have created a database for this application
> * The supported database is MySQL* Clone this repo
```bash
git clone https://github.com/dammy001/chore.git
```* Change directory to project directory
```bash
cd chore
```* Copy `.env` template
```bash
cp .env.example .env
```* Add correct database credentials to the `.env` file, credentials include:
- `DB_HOST`: This is your database host name/IP address
- `DB_NAME`: This is your database user
- `DATABASE_PASSWORD`: This is your database password if any, it should be left blank if no password is configured (localhost)* Migrate Database
```bash
php artisan migrate
```* Start Queue
```bash
php artisan queue:work database
```* Run application
```bash
php artisan serve
```This will serve this application on port 8000.
## Usage
>**NOTE**
> #### Sign up with ->
> **Name**
> **E-mail**
> **Password**| Page Name | Description | Route | Screenshot |
|--- |--- |--- |--- |
| Homepage | This is the homepage, it links to all other pages | `/` |  |
| Login | This page shows the login form which allows you to login into the application | `/login` |  |
| Register | This page shows the register form which allows you login and fire login into the application | `/register` |  |
| Movie Details 🍶 | This page shows the movie details | `/show/{movie_id}` |  |
| Cast | This page allows you to view cast of selected movie | `/show/{movie_id}` |  |
| Search | This allows you to search for movie or tv shows | `/search` |  |
| TV Shows | This page shows you tv shows now airing or popular | `/tv-shows` |  |