Mini https://store.steampowered.com website.
ReXsteam.mp4
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
-
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