publishconf.py (626B)
1 #!/usr/bin/env python 2 # -*- coding: utf-8 -*- # 3 4 # This file is only used if you use `make publish` or 5 # explicitly specify it as your config file. 6 7 import os 8 import sys 9 sys.path.append(os.curdir) 10 from pelicanconf import * 11 12 # If your site is available via HTTPS, make sure SITEURL begins with https:// 13 SITEURL = '' 14 RELATIVE_URLS = False 15 16 FEED_ALL_ATOM = 'feeds/all.atom.xml' 17 CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml' 18 19 DELETE_OUTPUT_DIRECTORY = True 20 21 PLUGINS = [ 22 'pelican.plugins.neighbors', 23 'sign', 24 ] 25 26 # Following items are often useful when publishing 27 28 #DISQUS_SITENAME = "" 29 #GOOGLE_ANALYTICS = ""