Optimized variable typos

This commit is contained in:
2025-08-15 18:43:42 +02:00
parent 85a2f4b3d2
commit 3ac9bd9f90
33 changed files with 101 additions and 101 deletions

View File

@@ -10,15 +10,15 @@ TAIGA_SECRET_KEY = "{{applications | get_app_conf(application_id, 'credenti
SECRET_KEY = "{{applications | get_app_conf(application_id, 'credentials.secret_key', True)}}"
# Taiga's Database settings - Variables to create the Taiga database and connect to it
POSTGRES_USER = "{{database_username}}" # user to connect to PostgreSQL
POSTGRES_PASSWORD = "{{database_password}}" # database user's password
POSTGRES_DB = "{{database_name}}"
POSTGRES_HOST = "{{database_host}}"
POSTGRES_USER = "{{ database_username }}" # user to connect to PostgreSQL
POSTGRES_PASSWORD = "{{ database_password }}" # database user's password
POSTGRES_DB = "{{ database_name }}"
POSTGRES_HOST = "{{ database_host }}"
# Taiga's SMTP settings - Variables to send Taiga's emails to the users
EMAIL_BACKEND = "{{email_backend}}" # use an SMTP server or display the emails in the console (either "smtp" or "console")
EMAIL_HOST = "{{system_email.host}}" # SMTP server address
EMAIL_PORT = "{{system_email.port}}" # default SMTP port
EMAIL_HOST = "{{ system_email.host }}" # SMTP server address
EMAIL_PORT = "{{ system_email.port }}" # default SMTP port
EMAIL_HOST_USER = "{{ users['no-reply'].email }}" # user to connect the SMTP server
EMAIL_HOST_PASSWORD = "{{ users['no-reply'].mailu_token }}" # SMTP user's password
EMAIL_DEFAULT_FROM = "{{ users['no-reply'].email }}" # default email address for the automated emails