Skip to content
This repository has been archived by the owner on Mar 8, 2018. It is now read-only.

Commit

Permalink
Initial commit of bolierplate stuff.
Browse files Browse the repository at this point in the history
  • Loading branch information
dracos committed Dec 23, 2011
0 parents commit 0bb1d06
Show file tree
Hide file tree
Showing 14 changed files with 1,162 additions and 0 deletions.
696 changes: 696 additions & 0 deletions LICENSE.txt

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions conf/.gitignore
@@ -0,0 +1,5 @@
general.yml
general.yml.deployed
httpd.conf
httpd.conf.deployed

18 changes: 18 additions & 0 deletions conf/general.yml-example
@@ -0,0 +1,18 @@
# general-example:
# Example values for the "general" config file.
#
# Configuration parameters, in YAML syntax.
#
# Copy this file to one called "general.yml" in the same directory. Or
# have multiple config files and use a symlink to change between them.
#
# Copyright (c) 2011 UK Citizens Online Democracy. All rights reserved.

POPIT_DB_HOST: 'localhost'
POPIT_DB_PORT: '5432'
POPIT_DB_USER: ''
POPIT_DB_NAME: ''
POPIT_DB_PASS: ''

STAGING: '1'

36 changes: 36 additions & 0 deletions conf/httpd.conf-example
@@ -0,0 +1,36 @@
# Apache configuration.
#
# Copyright (c) 2011 UK Citizens Online Democracy. All rights reserved.
# WWW: http://www.mysociety.org

# # This kind of thing would be needed if we wanted a password.
#
# <Location />
# AuthType Basic
# AuthName "Private beta I'm afraid."
# AuthUserFile django-jumpstart-htpasswd
# Require valid-user
# Order deny,allow
# Deny from all
# Satisfy any
# </Location>

# Replace the following below:
# 'example.com', 'exampleuser', 'examplegroup'

Alias /media_root /data/vhost/example.com/media_root
Alias /static /data/vhost/example.com/collected_static
Alias /robots.txt /data/vhost/example.com/docs/robots.txt
Alias /favicon.ico /data/vhost/example.com/docs/favicon.ico

WSGIDaemonProcess example.com \
user=exampleuser \
group=examplegroup \
processes=5 \
threads=1 \
display-name=example.com \
python-path=/data/vhost/example.com/django-jumpstart-virtualenv/lib/python2.6/site-packages

WSGIProcessGroup example.com

WSGIScriptAlias / /data/vhost/example.com/django-jumpstart/wsgi/django.wsgi
6 changes: 6 additions & 0 deletions conf/packages
@@ -0,0 +1,6 @@

# needed to build the virtualenv
python-dev
python-pip
python-virtualenv

34 changes: 34 additions & 0 deletions conf/post_deploy_actions.bash
@@ -0,0 +1,34 @@
#!/bin/bash

# abort on any errors
set -e

# check that we are in the expected directory
cd `dirname $0`/..

# create the virtual environment, install/update required packages
# NOTE: some packages are difficult to install if they are not site packages,
# for example xapian. If using these you might want to remove the
# '--no-site-packages' argument.
virtualenv --no-site-packages ../popit-mysociety-virtualenv

source ../popit-mysociety-virtualenv/bin/activate

pip install \
--requirement requirements.txt \
--quiet

# make sure that there is no old code (the .py files may have been git deleted)
find . -name '*.pyc' -delete

# go to the project directory for local config
cd ./example_popit_project

# get the database up to speed
./manage.py syncdb
./manage.py migrate

# gather all the static files in one place
./manage.py collectstatic --noinput

cd --
Empty file.
14 changes: 14 additions & 0 deletions example_popit_project/manage.py
@@ -0,0 +1,14 @@
#!/usr/bin/env python
from django.core.management import execute_manager
import imp
try:
imp.find_module('settings') # Assumed to be in the same directory.
except ImportError:
import sys
sys.stderr.write("Error: Can't find the file 'settings.py' in the directory containing %r. It appears you've customized things.\nYou'll have to run django-admin.py, passing it your settings module.\n" % __file__)
sys.exit(1)

import settings

if __name__ == "__main__":
execute_manager(settings)
180 changes: 180 additions & 0 deletions example_popit_project/settings.py
@@ -0,0 +1,180 @@
# Django settings for example popit project.

import os.path
BASE_DIR = os.path.dirname(os.path.abspath(__file__))

import sys
path = os.path.abspath( os.path.join( BASE_DIR, '..' ) )

# We don't want two copies of this on the path, so remove it if it's
# already there.
while path in sys.path:
sys.path.remove(path)

sys.path.insert(0, path)

try:
config = yaml.load( open(os.path.normpath( os.path.join(path, 'conf', 'general.yml') ), 'r') )
except:
config = {}

if int(config.get('STAGING')):
STAGING = True
else:
STAGING = False

DEBUG = STAGING
TEMPLATE_DEBUG = DEBUG

ADMINS = (
# ('Your Name', 'your_email@example.com'),
)

MANAGERS = ADMINS

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': config.get('POPIT_DB_NAME'),
'USER': config.get('POPIT_DB_USER'),
'PASSWORD': config.get('POPIT_DB_PASS'),
'HOST': config.get('POPIT_DB_HOST'),
'PORT': config.get('POPIT_DB_PORT'),
}
}

# Local time zone for this installation. Choices can be found here:
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
# although not all choices may be available on all operating systems.
# On Unix systems, a value of None will cause Django to use the same
# timezone as the operating system.
# If running in a Windows environment this must be set to the same as your
# system time zone.
TIME_ZONE = 'America/Chicago'

# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
LANGUAGE_CODE = 'en-us'

SITE_ID = 1

# If you set this to False, Django will make some optimizations so as not
# to load the internationalization machinery.
USE_I18N = True

# If you set this to False, Django will not format dates, numbers and
# calendars according to the current locale
USE_L10N = True

# Absolute filesystem path to the directory that will hold user-uploaded files.
# Example: "/home/media/media.lawrence.com/media/"
MEDIA_ROOT = ''

# URL that handles the media served from MEDIA_ROOT. Make sure to use a
# trailing slash.
# Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
MEDIA_URL = ''

# Absolute path to the directory static files should be collected to.
# Don't put anything in this directory yourself; store your static files
# in apps' "static/" subdirectories and in STATICFILES_DIRS.
# Example: "/home/media/media.lawrence.com/static/"
STATIC_ROOT = ''

# URL prefix for static files.
# Example: "http://media.lawrence.com/static/"
STATIC_URL = '/static/'

# URL prefix for admin static files -- CSS, JavaScript and images.
# Make sure to use a trailing slash.
# Examples: "http://example.com/static/admin/", "/static/admin/".
ADMIN_MEDIA_PREFIX = '/static/admin/'

# Additional locations of static files
STATICFILES_DIRS = (
# Put strings here, like "/home/html/static" or "C:/www/django/static".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
)

# List of finder classes that know how to find static files in
# various locations.
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
# 'django.contrib.staticfiles.finders.DefaultStorageFinder',
)

# Make this unique, and don't share it with anybody.
SECRET_KEY = 'aoru%p(e#ervnqgvwg2%24%a6$q4m25)p=_apwy+mtxmvue*n3'

# List of callables that know how to import templates from various sources.
TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
# 'django.template.loaders.eggs.Loader',
)

MIDDLEWARE_CLASSES = (
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
)

ROOT_URLCONF = 'example_popit_project.urls'

TEMPLATE_DIRS = (
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
os.path.join(BASE_DIR, 'templates'),
)

INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
# Uncomment the next line to enable the admin:
'django.contrib.admin',
# Uncomment the next line to enable admin documentation:
'django.contrib.admindocs',
'south',
'markitup',
'popit',
)

# A sample logging configuration. The only tangible logging
# performed by this configuration is to send an email to
# the site admins on every HTTP 500 error.
# See http://docs.djangoproject.com/en/dev/topics/logging for
# more details on how to customize your logging configuration.
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'handlers': {
'mail_admins': {
'level': 'ERROR',
'class': 'django.utils.log.AdminEmailHandler'
}
'stream_to_stderr': {
'level': 'WARN',
'class': 'logging.StreamHandler',
},
},
'loggers': {
'django.request': {
'handlers': ['stream_to_stderr'],
'level': 'WARN',
'propagate': True,
},
}
}

MARKITUP_FILTER = ('markdown.markdown', {'safe_mode': True})
MARKITUP_SET = 'markitup/sets/markdown'

2 changes: 2 additions & 0 deletions example_popit_project/templates/index.html
@@ -0,0 +1,2 @@
Example project home page.

18 changes: 18 additions & 0 deletions example_popit_project/urls.py
@@ -0,0 +1,18 @@
from django.conf.urls.defaults import patterns, include, url
from django.views.generic import TemplateView

# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
# Examples:
url(r'^$', TemplateView.as_view(template_name='index.html'), name='home'),
url(r'^popit/', include('popit.urls')),

# Uncomment the admin/doc line below to enable admin documentation:
url(r'^admin/doc/', include('django.contrib.admindocs.urls')),

# Uncomment the next line to enable the admin:
url(r'^admin/', include(admin.site.urls)),
)
14 changes: 14 additions & 0 deletions requirements.txt
@@ -0,0 +1,14 @@
# List all Python package requirements this project has.
#
# more details: http://www.pip-installer.org/en/latest/requirements.html

PyYAML
psycopg2

# From popit app
Django==1.3.1
Markdown==2.1.0
South==0.7.3
-e git://github.com/dracos/django-date-extensions.git@988572f1b018c64ff2f93c7f401a49ffd3f9d6bf#egg=django_date_extensions-dev
django-markitup==1.0.0

24 changes: 24 additions & 0 deletions wsgi/django.wsgi
@@ -0,0 +1,24 @@
#!/usr/bin/python

import os, sys

file_dir = os.path.abspath(os.path.realpath(os.path.dirname(__file__)))
paths = (
os.path.normpath(os.path.join(file_dir)),
os.path.normpath(os.path.join(file_dir, '..', 'example_popit_project'))
)
for path in paths:
if path not in sys.path:
sys.path.append(path)

import settings

if settings.DEBUG:
import wsgi_monitor
wsgi_monitor.start(interval=1.0)

os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'

import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()

0 comments on commit 0bb1d06

Please sign in to comment.