Configuration
Base url
This is the base public URL where the app will be running.
Name | Value |
---|---|
Type | string |
Default | Required |
Example | http://localhost:3000 |
ENV | APP_BASE_URL |
Session password
The session protection password, 32 characters long, is required to encrypt the current user session.
Name | Value |
---|---|
Type | string |
Default | Required |
ENV | APP_SESSION_PASSWORD |
Allow registration
If true
is set, any user will be able to register. If false
, user self-registration is disabled, and only the administrator can create users.
Name | Value |
---|---|
Type | boolean |
Default | true |
ENV | APP_AUTH_ALLOW_REGISTRATION |
Account allow delete
If true
is set, any user can delete their profile. Absolutely everything associated with it is deleted.
Name | Value |
---|---|
Type | boolean |
Default | false |
ENV | APP_ACCOUNT_ALLOW_DELETE |
Email
Setting up e-mail. It is necessary for sending emails about password recovery, notifications about invitations to the project.
TIP
You can read more at advanced email
Host
Outgoing mail server.
Name | Value |
---|---|
Type | string |
Example | smtp.gmail.com |
ENV | APP_EMAIL_HOST |
Port
Outgoing server port.
Name | Value |
---|---|
Type | integer |
Example | 587 |
ENV | APP_EMAIL_PORT |
From
Return Mail Address. Mail will be sent from this name. It is almost always the same as the login.
Name | Value |
---|---|
Type | string |
Example | no-reply@example.com |
ENV | APP_EMAIL_FROM |
Auth user
Login from the account from which the message will be sent. Some providers require a domain name, as shown in the example.
Name | Value |
---|---|
Type | string |
Example | no-reply@example.com |
ENV | APP_EMAIL_AUTH_USER |
Auth password
Password from the account from which the message will be sent.
Name | Value |
---|---|
Type | string |
ENV | APP_EMAIL_AUTH_PASSWORD |
Disable sponsor link
This option disables the sponsored link at the bottom of the app.
Пояснение
We give you the option to disable the sponsored link so other users don't see it. In turn, please make any donation to support the project.
Sponsoring on BoostyName | Value |
---|---|
Type | boolean |
Default | false |
ENV | APP_PUBLIC_DISABLE_SPONSOR_LINK |
Disable source link
This option disables the link to the GitHub repository at the bottom of the application.
TIP
We provide the option to disable the source link so that other users do not see it. In turn, please make any donation to support the project.
Sponsoring on BoostyName | Value |
---|---|
Type | boolean |
Default | false |
ENV | APP_PUBLIC_DISABLE_SOURCE_LINK |