📚 Align comments to 80 characters

I did not find any style recommendation that states an exact line length. Assuming a common value of 80, this leads to less lines being split.
This commit is contained in:
Michael G 2021-05-30 19:02:26 +02:00 committed by Draget
parent d102144746
commit 9d54f71dbb

View file

@ -1,9 +1,7 @@
# Should be set to the public domain where penpot is going to be # Should be set to the public domain where penpot is going to be served.
# served.
PENPOT_PUBLIC_URI=http://localhost:9001 PENPOT_PUBLIC_URI=http://localhost:9001
# Standard database connection parameters (only postgresql is # Standard database connection parameters (only postgresql is supported):
# supported):
PENPOT_DATABASE_URI=postgresql://penpot-postgres/penpot PENPOT_DATABASE_URI=postgresql://penpot-postgres/penpot
PENPOT_DATABASE_USERNAME=penpot PENPOT_DATABASE_USERNAME=penpot
PENPOT_DATABASE_PASSWORD=penpot PENPOT_DATABASE_PASSWORD=penpot
@ -11,22 +9,22 @@ PENPOT_DATABASE_PASSWORD=penpot
# Redis is used for the websockets notifications. # Redis is used for the websockets notifications.
PENPOT_REDIS_URI=redis://penpot-redis/0 PENPOT_REDIS_URI=redis://penpot-redis/0
# By default, files uploaded by users are stored in local filesystem. But # By default, files uploaded by users are stored in local filesystem. But it
# it can be configured to store in AWS S3 or completely in de the # can be configured to store in AWS S3 or completely in de the database.
# database. Storing in the database makes the backups more easy but # Storing in the database makes the backups more easy but will make access to
# will make access to media less performant. # media less performant.
PENPOT_STORAGE_BACKEND=fs PENPOT_STORAGE_BACKEND=fs
PENPOT_STORAGE_FS_DIRECTORY=/opt/data/assets PENPOT_STORAGE_FS_DIRECTORY=/opt/data/assets
# Telemetry. When enabled, a periodical process will send anonymous # Telemetry. When enabled, a periodical process will send anonymous data about
# data about this instance. Telemetry data will enable us to learn on # this instance. Telemetry data will enable us to learn on how the application
# how the application is used, based on real scenarios. If you want to # is used, based on real scenarios. If you want to help us, please leave it
# help us, please leave it enabled. # enabled.
PENPOT_TELEMETRY_ENABLED=true PENPOT_TELEMETRY_ENABLED=true
# Email sending configuration. By default, emails are printed in the # Email sending configuration. By default, emails are printed in the console,
# console, but for production usage is recommended to setup a real SMTP # but for production usage is recommended to setup a real SMTP provider. Emails
# provider. Emails are used to confirm user registrations. # are used to confirm user registrations.
PENPOT_SMTP_ENABLED=false PENPOT_SMTP_ENABLED=false
PENPOT_SMTP_DEFAULT_FROM=no-reply@example.com PENPOT_SMTP_DEFAULT_FROM=no-reply@example.com
PENPOT_SMTP_DEFAULT_REPLY_TO=no-reply@example.com PENPOT_SMTP_DEFAULT_REPLY_TO=no-reply@example.com
@ -40,13 +38,12 @@ PENPOT_SMTP_DEFAULT_REPLY_TO=no-reply@example.com
# Enable or disable external user registration process. # Enable or disable external user registration process.
PENPOT_REGISTRATION_ENABLED=true PENPOT_REGISTRATION_ENABLED=true
# Comma separated list of allowed domains to register. Empty to allow # Comma separated list of allowed domains to register. Empty to allow all.
# all.
# PENPOT_REGISTRATION_DOMAIN_WHITELIST="" # PENPOT_REGISTRATION_DOMAIN_WHITELIST=""
# Penpot comes with the facility to create quick demo users that are # Penpot comes with the facility to create quick demo users that are
# automatically deleted after some time. This settings enables or # automatically deleted after some time. This settings enables or disables the
# disables the creation of demo users. # creation of demo users.
PENPOT_ALLOW_DEMO_USERS=true PENPOT_ALLOW_DEMO_USERS=true
## Authentication providers ## Authentication providers
@ -82,4 +79,3 @@ PENPOT_ALLOW_DEMO_USERS=true
# PENPOT_LDAP_ATTRS_FULLNAME=cn # PENPOT_LDAP_ATTRS_FULLNAME=cn
# PENPOT_LDAP_ATTRS_PHOTO=jpegPhoto # PENPOT_LDAP_ATTRS_PHOTO=jpegPhoto
# PENPOT_LOGIN_WITH_LDAP=true # PENPOT_LOGIN_WITH_LDAP=true