From b34a0a29169e76028fed3eaa6757f1bdfaa9133a Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Tue, 30 Jul 2024 16:09:23 +0200 Subject: [PATCH] Update getting-started.md --- docs/content/1.introduction/1.getting-started.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/content/1.introduction/1.getting-started.md b/docs/content/1.introduction/1.getting-started.md index 63d5179..b72c1f3 100644 --- a/docs/content/1.introduction/1.getting-started.md +++ b/docs/content/1.introduction/1.getting-started.md @@ -17,6 +17,20 @@ database. ```bash mkdir LicenseAPI && cd LicenseAPI wget https://raw.githubusercontent.com/gnmyt/LicenseAPI/main/docker-compose.yml +``` + +## Update environment variables + +Open the `.env` file and update the following environment variables: + +- `MAIL_SERVER`: The SMTP server to send emails. +- `MAIL_PORT`: The SMTP server port. +- `MAIL_USER`: The SMTP server username. +- `MAIL_PASS`: The SMTP server password. + +## Start LicenseAPI + +```bash docker compose up -d ```