Merge pull request 'Load from env var here too' (#1) from decentral1se/lumbung-calendar-prototype:env-var-config into master

Reviewed-on: #1
This commit is contained in:
rra 2021-07-13 12:09:31 +02:00
commit f21d331c47

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', '')