Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vl-037/rexsteam

Steam clone
https://github.com/vl-037/rexsteam

composer laravel mysql php

Last synced: 17 days ago
JSON representation

Steam clone

Awesome Lists containing this project

README

        

# ReXsteam

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

### Preview

https://github.com/VL-037/ReXsteam/assets/68309124/9c060c5b-95da-47fa-803a-b1bfc0ca50ad

### 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
```