To install the necessary dependencies for the client-side of your application, follow these steps:
-
CD to Client folder
-
Run
npm install
to install the dependencies defined in thepackage.json
file. -
Run
npm run dev
to start the client. -
Open http://localhost:3000 to view it in the browser.
npm install
To install the necessary dependencies for the server-side of your application using Composer, follow these steps:
- CD to Server folder
- Run
composer install
to install the dependencies defined in thecomposer.json
file.
composer install
-
Set
.env
file with your database credentials. -
Run
php artisan migrate
to create the tables in your database. -
Run
php artisan serve
to start the server.