# Local Dev Setup

## Prerequisites

- PHP 8.2+
- Composer
- Node.js 18+
- MySQL or MariaDB

## Install

1. composer install
2. npm install
3. cp .env.example .env
4. php artisan key:generate

## Database

Set the following in .env:

DB_CONNECTION=mysql
DB_DATABASE=nirmanos
DB_USERNAME=root
DB_PASSWORD=

Then create the database and run php artisan migrate.
