Browse Source

Load from env var here too

pull/1/head
decentral1se 3 years ago
parent
commit
67881d9d63
No known key found for this signature in database GPG Key ID: 5E2EF5A63E3718CC
  1. 6
      event_feed_config.py

6
event_feed_config.py

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

Loading…
Cancel
Save