master
user@nilino 2017-07-15 21:12:58 +02:00
parent 2bafacecb1
commit 61d2673f0b
6 changed files with 1 additions and 109 deletions

View File

@ -1,7 +1,4 @@
FROM python:2
MAINTAINER Matthew Jackowski
ENV REFRESHED_AT 2014-11-29
ENV SRV_DIR=//srv
ENV WORKING_DIR=//srv/pelican

View File

@ -1,10 +0,0 @@
Copyright (c) 2016, Matthew Jackowski
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

View File

@ -1,18 +0,0 @@
# Pelican Dockerfile
A base docker setup that inherits Python 2 and loads a bunch of deps. It runs Pelican in autoload mode for dev.
This is an easy to use image to setup a Pelican static website.
This image will run the Pelican devserver, which means it will watch for changes in the content and theme files.
Also a volume has been added so you can simply map to an existing Pelican directory and the container will update the output.
Some sane requirements have been pre-built into the image.
The DockerHub repository can be found here: https://hub.docker.com/r/mjjacko/pelican/
![Using the image](http://i.giphy.com/l396GL1mien20Tap2.gif)
## License
[BSD 2-Clause license](http://opensource.org/licenses/bsd-license.php)

View File

@ -1,35 +0,0 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
AUTHOR = u'Author'
SITENAME = u'Quickstart'
SITEURL = ''
PATH = 'content'
TIMEZONE = 'Europe/Paris'
DEFAULT_LANG = u'en'
# Feed generation is usually not desired when developing
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
# Blogroll
LINKS = (('Pelican', 'http://getpelican.com/'),
('Python.org', 'http://python.org/'),
('Jinja2', 'http://jinja.pocoo.org/'),
('You can modify those links in your config file', '#'),)
# Social widget
SOCIAL = (('You can add links in your config file', '#'),
('Another social link', '#'),)
DEFAULT_PAGINATION = 10
# Uncomment following line if you want document-relative URLs when developing
#RELATIVE_URLS = True

View File

@ -1,24 +0,0 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
# This file is only used if you use `make publish` or
# explicitly specify it as your config file.
import os
import sys
sys.path.append(os.curdir)
from pelicanconf import *
SITEURL = 'http://example.com'
RELATIVE_URLS = False
FEED_ALL_ATOM = 'feeds/all.atom.xml'
CATEGORY_FEED_ATOM = 'feeds/%s.atom.xml'
DELETE_OUTPUT_DIRECTORY = True
# Following items are often useful when publishing
#DISQUS_SITENAME = ""
#GOOGLE_ANALYTICS = ""

View File

@ -1,18 +0,0 @@
BeautifulSoup==3.2.1
beautifulsoup4==4.3.2
blinker==1.3
docutils==0.12
feedgenerator==1.7
ghp-import==0.4.1
Jinja2==2.7.3
Markdown==2.6.2
markdown-include==0.5.1
markdown-attr-plus==0.3.0
MarkupSafe==0.23
pelican==3.5.0
pelican-alias==1.1
Pygments==2.0.2
pytz==2015.2
six==1.9.0
Unidecode==0.04.17
wsgiref==0.1.2