18 lines
467 B
Markdown
18 lines
467 B
Markdown
# Backend
|
|
|
|
## Env Configuration
|
|
|
|
To set the mail configuration for the backend, you must create an `.env` file in the root directory of your project. This file should have the following content:
|
|
|
|
### Step 1: Creating the `.env` file
|
|
|
|
Create a file named `.env` in the root directory of the project.
|
|
|
|
### Step 2: Add the e-mail configuration
|
|
|
|
Open the `.env` file and add the following lines:
|
|
|
|
```env
|
|
EMAIL_HOST_USER=example@gmail.com
|
|
EMAIL_HOST_PASSWORD=password
|
|
```
|