Here are some instructions for running the application.
mkdir game-app
cd game-app
git clone https://github.com/mixtapeco/e-game-deck.git .
composer install
- Setup database:
mysql -u root
create database game-deck;
exit
- Setup env
cp .env.example .env
- edit .env to have db
game-deck
php artisan migrate
npm install
npm run dev
php artisan serve