From 61d2673f0b6c2a5e14ebfac1db4d27d00dd8da68 Mon Sep 17 00:00:00 2001 From: "user@nilino" Date: Sat, 15 Jul 2017 21:12:58 +0200 Subject: [PATCH] Clean up --- Dockerfile | 5 +---- LICENSE.txt | 10 ---------- README.md | 18 ----------------- files/pelican/pelicanconf.py | 35 ---------------------------------- files/pelican/publishconf.py | 24 ----------------------- files/pelican/requirements.txt | 18 ----------------- 6 files changed, 1 insertion(+), 109 deletions(-) delete mode 100644 LICENSE.txt delete mode 100644 README.md delete mode 100644 files/pelican/pelicanconf.py delete mode 100644 files/pelican/publishconf.py delete mode 100644 files/pelican/requirements.txt diff --git a/Dockerfile b/Dockerfile index c9cda3d..db28928 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 @@ -16,4 +13,4 @@ RUN pip install -r requirements.txt RUN chmod +x $SRV_DIR/develop_server.sh EXPOSE $PORT -CMD $SRV_DIR/develop_server.sh restart $PORT \ No newline at end of file +CMD $SRV_DIR/develop_server.sh restart $PORT diff --git a/LICENSE.txt b/LICENSE.txt deleted file mode 100644 index 7823cc0..0000000 --- a/LICENSE.txt +++ /dev/null @@ -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. diff --git a/README.md b/README.md deleted file mode 100644 index fe042a6..0000000 --- a/README.md +++ /dev/null @@ -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) diff --git a/files/pelican/pelicanconf.py b/files/pelican/pelicanconf.py deleted file mode 100644 index a6c7bf6..0000000 --- a/files/pelican/pelicanconf.py +++ /dev/null @@ -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 diff --git a/files/pelican/publishconf.py b/files/pelican/publishconf.py deleted file mode 100644 index 00e50e4..0000000 --- a/files/pelican/publishconf.py +++ /dev/null @@ -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 = "" diff --git a/files/pelican/requirements.txt b/files/pelican/requirements.txt deleted file mode 100644 index d4cf1f4..0000000 --- a/files/pelican/requirements.txt +++ /dev/null @@ -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