ADD multiline support for desc env var for terms and other links

This commit is contained in:
Caffeine Fueled 2025-10-26 11:39:46 +01:00
parent b62ec8473e
commit a8707a267b
Signed by: cf7
GPG key ID: CA295D643074C68C
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ import sys
BASEURL = os.getenv('BASEURL', 'http://127.0.0.1:8000')
DESCRIPTION = os.getenv('DESCRIPTION', 'CLI-only pastebin powered by linedump.com')
DESCRIPTION = os.getenv('DESCRIPTION', 'CLI-only pastebin powered by linedump.com\nOpen Source: https://git.uphillsecurity.com/cf7/linedump').replace('\\n', '\n')
MAX_FILE_SIZE_MB = int(os.getenv('MAX_FILE_SIZE_MB', '50'))
RATE_LIMIT = os.getenv('RATE_LIMIT', '50/hour')
URL_PATH_LENGTH = int(os.getenv('URL_PATH_LENGTH', '6'))