-
Clone the repository:
git clone https://github.com/awalhadi/banking-system cd banking-system
-
Install composer dependencies:
composer install
-
Setup environment variables:
cp .env.example .env php artisan key:generate
-
Configure
.env
file with database information. -
Run migrations:
php artisan migrate
-
Serve the application:
php artisan serve
-
Install npm packages (you can use yarn or npm):
yarn install
or
npm run install
-
Then run dev
yarn dev
or
npm run dev