publishconf.py 479 B

1234567891011121314151617181920
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*- #
  3. # This file is only used if you use `make publish` or
  4. # explicitly specify it as your config file.
  5. import os
  6. import sys
  7. sys.path.append(os.curdir)
  8. from pelicanconf import *
  9. # If your site is available via HTTPS, make sure SITEURL begins with https://
  10. SITEURL = 'https://libdatachannel.org'
  11. RELATIVE_URLS = False
  12. FEED_ALL_ATOM = 'feeds/all.atom.xml'
  13. CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml'
  14. DELETE_OUTPUT_DIRECTORY = True