Load from env var here too

This commit is contained in:
decentral1se 2021-07-13 11:07:56 +02:00
parent 857b527bd1
commit 67881d9d63
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC

View File

@ -1,6 +1,8 @@
import os
# a publicly accessible ICS calendar
calendar_url= ''
calendar_url = os.environ.get('CALENDAR_URL', '')
# your Hugo content directory
output_dir = ''
output_dir = os.environ.get('OUTPUT_DIR', '')