Files
caminus/README.md
Trever Fischer acf46c35f3 Doc dependencies
2012-03-17 11:48:25 -04:00

797 B

Caminus

This is the source code for the minecraft community Caminus.

http://camin.us

Installation

Caminus is designed to keep sensitive database credentials and whatnot out of settings.py. To accomplish this, you'll need to create a local_settings.py in the same directory as settings.py. Override anything you see fit.

For example:

TEMPLATE_DIRS = (
    "/usr/share/caminus/templates/"
)

STATCFILES_DIRS = (
    "/usr/share/caminus/static/"
)

Next, install the database:

./manage.py syncdb --migrate --noinput

Finally, create a superuser account:

./manage.py createsuperuser

Updating

./manage.py syncdb --migrate

Dependencies

  • shortuuid
  • pyspy
  • PIL
  • django-mptt
  • django-messaging
  • django-notifications
  • Django
  • south