Skip to content

Latest commit

 

History

History
47 lines (35 loc) · 1.25 KB

README.md

File metadata and controls

47 lines (35 loc) · 1.25 KB

ReXsteam

Mini https://store.steampowered.com website.

Preview

ReXsteam.mp4

To run this project, please do the following:

Make sure you have these tools

Tool Detail
PHP https://www.php.net/downloads.php
Composer https://getcomposer.org/download
XAMPP https://sourceforge.net/projects/xampp
  • Create a .env file in the root directory and add the following code
APP_NAME=Laravel
APP_ENV=local
APP_KEY=base64:I+Hz+rXhhVMR0KhqvE6/hNUhfvScExxX2giFRi55ITM=
APP_DEBUG=true
APP_URL=http://localhost

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=rexsteam
DB_USERNAME=root
DB_PASSWORD=
  • Run MySQL & Apache from XAMPP

  • Open http://localhost/phpmyadmin

  • Create a database same to DB_DATABASE .env variable

  • Then run the following commands to start the app

composer install
php artisan migrate:fresh --seed
php artisan serve