fix: remove unused env var

This commit is contained in:
Urko. 2023-12-26 12:07:44 +01:00
parent 5e62d31124
commit 6a6a8f9d32
2 changed files with 1 additions and 2 deletions

View File

@ -38,7 +38,7 @@ The application uses the following environment variables:
ORDERS_COLLECTION: The name of the MongoDB collection for orders.
CONVERSOR_API: The API used for converting USD to Bitcoin.
RPC_HOST, RPC_AUTH, RPC_ZMQ, WALLET_ADDRESS: Configuration for the Bitcoin service.
MAIL_USER, MAIL_PASSWORD, MAIL_HOST, MAIL_PORT, MAIL_FROM, MAIL_TEMPLATES_DIR: Configuration for the mail service.
MAIL_USER, MAIL_PASSWORD, MAIL_HOST, MAIL_PORT, MAIL_FROM: Configuration for the mail service.
```
### Webhook configuration

View File

@ -27,7 +27,6 @@ type Config struct {
MailUser string `required:"true" split_words:"true"`
MailPassword string `required:"true" split_words:"true"`
MailFrom string `required:"true" split_words:"true"`
MailTemplatesDir string `required:"true" split_words:"true"`
MailTo string `required:"false" split_words:"true"`
}