#!/usr/bin/env python # -*- coding: utf-8 -*- # from __future__ import unicode_literals # Used for the "staging" branch build: a more production-like preview # than the bare pelicanconf.py build used for "devel" (feeds enabled, # absolute URLs) but still pointed at the internal dev webserver rather # than the real domain. import os import sys sys.path.append(os.curdir) from pelicanconf import * SITEURL = 'http://haemka-de.wd.haemka.lan' RELATIVE_URLS = False FEED_ALL_ATOM = 'feeds/all.atom.xml' CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml' DELETE_OUTPUT_DIRECTORY = True