Game Manager is an application designed to manage in-game markets and guilds. It's built with Laravel, Vue, and Inertia.js.
- Clone the repository:
git clone https://github.com/dicani0/game-manager
cd game-manager
Install the dependencies:
composer install
npm install
Copy the example environment file and generate an application key:
cp .env.example .env
php artisan key:generate
Start the containers:
make start
Enter the shell of the application container:
make bash
Run the migrations:
php artisan migrate:fresh --seed
Start the application:
npm run dev
Start the queue:
php artisan queue:work
To run the tests use the following command:
php artisan test
To be added