Implement the item vault API

This commit is contained in:
Trever Fischer
2012-11-09 07:55:44 -05:00
parent a2895f400c
commit e3296b029a
11 changed files with 144 additions and 0 deletions

View File

@@ -126,6 +126,7 @@ INSTALLED_APPS = (
'forums',
'mptt',
'api',
'bounty',
'django.contrib.markup',
'south',
'django.contrib.flatpages',
@@ -137,6 +138,7 @@ INSTALLED_APPS = (
'piston',
'donate',
'badges',
'vault',
# Uncomment the next line to enable admin documentation:
# 'django.contrib.admindocs',
)
@@ -195,6 +197,8 @@ CAMINUS_USE_BEANSTALKD = False
CAMINUS_BEANSTALKD_HOST = 'localhost'
CAMINUS_BEANSTALKD_PORT = 11300
CAMINUS_BOUNTY_PRICE=250
# Load any site-local overrides, such as camin.us' database settings, etc
try:
from local_settings import *