# Configuration Guide

This document contains important configuration settings for the Lusar web application.

## Email Configuration

The application uses SMTP for sending emails. Add the following settings to your `.env` file:

```env
MAIL_MAILER=smtp
MAIL_HOST=server.mellon-dev.eu
MAIL_PORT=465
MAIL_USERNAME=marijan@lusar.hr
MAIL_PASSWORD=Suljo31431!
MAIL_SCHEME=smtps
MAIL_FROM_ADDRESS="info@lusar.hr"
MAIL_FROM_NAME="${APP_NAME}"
```

**Notes:**
- Mail server: `server.mellon-dev.eu` (SSL on port 465)
- Sender address: `info@lusar.hr`
- Authentication: `marijan@lusar.hr`
- These settings are shared across Lusar projects for consistency

---

## Other Configuration

(Add other configuration sections as needed)
