Heroes of the Storm Helper is an app for creating builds and tier lists for Blizzard's MOBA game.
A live demo can be viewed here: https://heroes-of-the-storm-helper.herokuapp.com/
- PHP 7.3+ and Composer
- Database supported by Laravel (MySQL, PostgreSQL, SQLite, SQL Server)
- Node.js 16 and NPM
- Git
-
Clone the repo locally:
git clone https://github.com/Skonry/heroes-of-the-storm-helper.git
-
Navigate to project directory:
cd heroes-of-the-storm-helper
-
Install PHP dependencies:
composer install
-
Install NPM dependencies:
npm i
-
Build assets:
npm run dev
-
Setup configuration file .env
cp .env.example .env
-
Generate application key:
php artisan key:generate
-
Create database
-
Run database migrations:
php artisan migrate
-
Run database seeder:
php artisan db:seed
-
Run the dev server:
php artisan serve