Skip to content

pyconca/2013-web

This branch is 514 commits ahead of, 259 commits behind pinax/symposion:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
Taavi Burns
Aug 23, 2013
3d4169e · Aug 23, 2013
May 16, 2013
Jul 3, 2013
Aug 23, 2013
Aug 14, 2013
Aug 7, 2013
Jan 21, 2013
Jun 5, 2012
Aug 31, 2012
Jun 23, 2013
Jun 3, 2013
Aug 23, 2013
May 11, 2013
Jul 11, 2012
Aug 23, 2013
Jul 18, 2012
Jun 23, 2013
Aug 20, 2013
Aug 14, 2012

Repository files navigation

Symposion

A conference management solution from Eldarion.

Built with the generous support of the Python Software Foundation.

See http://eldarion.com/symposion/ for commercial support, customization and hosting

Getting started

Get your environment set up:

$ virtualenv pycona-2013-web-env
$ . pyconca-2013-web-env/bin/activate
$ git clone git://github.com/pyconca/2013-web.git pyconca-2013-web
$ cd pyconca-2013-web

If you're using XCode 4 on Snow Leopard:

export ARCHFLAGS="-arch i386 -arch x86_64"

If you're still using Python 2.6 (stop that, use 2.7!):

$ pip install importlib

Install requirements and reset the development environment:

$ make reset
...
-----------------------------------------
User '[email protected]' created with password 'asdf'
-----------------------------------------

Start the server! Go to http://localhost:6544/; you can log in with [email protected]/asdf.

$ make run
./manage.py runserver 127.0.0.1:6544
Validating models...

0 errors found
Django version 1.4.3, using settings 'symposion_project.settings'
Development server is running at http://127.0.0.1:6544/
Quit the server with CONTROL-C.

Translation

For internationalization/i18n, either do:

$ make i18n

...or the good old way:

# change the symposion_project directory
$ cd symposion_project
$ django-admin.py makemessages -a

# now make changes to generated .po files ...
$ django-admin.py compilemessages

# go back to project root directory
$ cd "$(git rev-parse --show-toplevel)"

# also need to change symposion directory
$ cd symposion
$ django-admin.py makemessages -a

# now make changes to generated .po files ...
$ django-admin.py compilemessages

To build documentation::

$ make docs

Deploying

$ ssh pycon.ca
$ cd /data/web/2013.pycon.ca/pyconca
$ . /data/virtualenvs/2013.pycon.ca/bin/activate
$ git pull --ff-only # Note the hash, I usually push a deploy tag from my local repo pointed at this hash
$ # => IF IT REFUSES TO FAST-FORWARD, SOMEONE HAS COMMITTED THINGS TO PROD WITHOUT GOING THROUGH GITHUB
$ #    Figure out why before you continue!
$ make restart_prod

About

a Django project for conference websites

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • CSS 56.1%
  • Python 25.6%
  • JavaScript 18.3%