MoneyPoly allows you to easily manage your money during a monopoly game.
-
Clone the project
-
Install
Composer
dependencies.composer install
-
Install
NPM
dependencies.npm install
-
The below command will compile all the assets(sass, js, media) to public folder:
npm run dev
-
Copy
.env.example
file and create duplicate. Usecp
command forLinux
andMac
users.cp .env.example .env
If you are using
Windows
, usecopy
instead ofcp
.copy .env.example .env
-
Enter your details in the newly created .env file
-
The below command will create tables into database using Laravel migration and seeder.
php artisan migrate:fresh --seed
-
Generate your application encryption key
php artisan key:generate
-
Link the project to valet
valet link
-
Secure the domain
valet secure
-
Start Laravel Horizon
php artisan horizon
-
In a new terminal window, start the websockets server
php artisan websocket:serve