Laramov is Movies and TV Shows App
- PHP >= 8.0
- BCMath PHP Extension
- Ctype PHP Extension
- cURL PHP Extension
- DOM PHP Extension
- Fileinfo PHP Extension
- JSON PHP Extension
- Mbstring PHP Extension
- OpenSSL PHP Extension
- PCRE PHP Extension
- PDO PHP Extension
- Tokenizer PHP Extension
- XML PHP Extension
- Clone GitHub repo for this project locally
git clone https://github.com/dibaliqaja/laramov.git- Change directory in project which already clone
cd laramov- Install Composer dependencies
composer install- Install NPM dependencies
npm install- Create a copy of your .env file
cp .env.example .env- Generate an app encryption key
php artisan key:generate-
Create an empty database for our application
-
In the .env file, add database information to allow Laravel to connect to the database
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE={database-name}
DB_USERNAME={username-database}
DB_PASSWORD={password-database}- Migrate the database
php artisan migrate- Running project
php artisan serveThe Laravel framework is open-sourced software licensed under the MIT license.