Mercurial > public > pelican-blog
comparison publishconf.py @ 0:c4ec6945bb86
Just ran pelican-quickstart and answered some questions.
Created .hgignore file.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 29 Jan 2014 18:53:45 -0600 |
parents | |
children | a893739e9587 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:c4ec6945bb86 |
---|---|
1 #!/usr/bin/env python | |
2 # -*- coding: utf-8 -*- # | |
3 from __future__ import unicode_literals | |
4 | |
5 # This file is only used if you use `make publish` or | |
6 # explicitly specify it as your config file. | |
7 | |
8 import os | |
9 import sys | |
10 sys.path.append(os.curdir) | |
11 from pelicanconf import * | |
12 | |
13 SITEURL = 'http://deathofagremmie.com' | |
14 RELATIVE_URLS = False | |
15 | |
16 FEED_ALL_ATOM = 'feeds/all.atom.xml' | |
17 CATEGORY_FEED_ATOM = 'feeds/%s.atom.xml' | |
18 | |
19 DELETE_OUTPUT_DIRECTORY = True | |
20 | |
21 # Following items are often useful when publishing | |
22 | |
23 #DISQUS_SITENAME = "" | |
24 #GOOGLE_ANALYTICS = "" |