Go to file
Thomas Steen Rasmussen 16052601a8 update readme with notes on prod migration 2017-01-28 21:01:19 +01:00
bornhack more small fixes, add camp list 2017-01-25 01:49:13 +01:00
camps use {camp-slug}_*.html for all templates 2017-01-28 19:30:52 +01:00
info just a commit before we start the days work 2017-01-20 16:18:10 +01:00
news just a commit before we start the days work 2017-01-20 16:18:10 +01:00
profiles this is the beginning of multicamp support, much work still to be done 2016-12-25 15:52:55 +01:00
program use {camp-slug}_*.html for all templates 2017-01-28 19:30:52 +01:00
shop this is the beginning of multicamp support, much work still to be done 2016-12-25 15:52:55 +01:00
sponsors remove empty files from sponsors app 2017-01-28 18:23:10 +01:00
static_src add temporary 2017 logos 2017-01-28 18:24:06 +01:00
templates more small fixes, add camp list 2017-01-25 01:49:13 +01:00
utils remove duplicate event from bootstrap script 2017-01-28 19:17:34 +01:00
vendor rename file, typo 2016-05-17 08:38:02 +02:00
villages just a commit before we start the days work 2017-01-20 16:18:10 +01:00
.gitignore ignore venv 2016-11-08 08:30:41 +01:00
README.md update readme with notes on prod migration 2017-01-28 21:01:19 +01:00
manage.py make settings, env settings, and requirements less complex 2016-11-22 21:04:06 +01:00
requirements.txt get the right number of 9s for html5lib so bleach doesn't crap out, see https://github.com/mozilla/bleach/issues/212 and https://github.com/mozilla/bleach/issues/212 2017-01-20 19:35:10 +01:00

README.md

Bornhack

Django project to power Bornhack. Features include news, villages, webshop, and more.

Quickstart

Virtualenv

Create a Python 2.7 virtual environment and activate it:

$ virtualenv venv
$ source venv/bin/activate

System libraries

Install system dependencies (method depends on OS):

  • postgresql headers (for psycopg2):
    • Debian: libpq-dev
    • FreeBSD: ?
  • libjpeg (for pdf generation)
    • Debian: libjpeg-dev
    • FreeBSD: ?

Python packages

Install pip packages:

    (venv) $ pip install -r requirements.txt

Configuration file

Copy environment file template and change settings as needed:

    (venv) $ cp bornhack/settings/env.dist bornhack/settings/.env

Database

Is this a new installation? Initialize the database:

    (venv) $ ./manage.py migrate

Is this for local development? Bootstrap the database with dummy data and users:

    (venv) $ ./manage.py bootstrap-devsite

Done

Is this for local development? Start the Django devserver:

    (venv) $ ./manage.py runserver

Otherwise start uwsgi or similar to serve the application.

Enjoy!

Notes

How to add a camp

  • Add a new camp in the admin interface.
  • Add a sponsers page, {camp-slug}-sponsors.html, to sponsors/templates.
  • Add a frontpage, {camp-slug}-camp_detail.html, to camps/templates.
  • Add a call for speakers page, {camp-slug}-call_for_speakers.html, to program/templates.
  • Create static/img/{camp-slug}/logo and add two logos:
    • {camp-slug}-logo-large.png
    • {camp-slug}-logo-small.png

multicamp prod migration notes

when villages.0008 migration fails go add camp_id to all existing villages

go to admin interface and add bornhack 2017, and set slug for bornhack 2016

convert events to the new format (somehow)