Install sentry.

rtd2
Eric Holscher 2011-02-26 15:05:22 -08:00
parent 8f1f616458
commit 5387dd07bb
3 changed files with 6 additions and 0 deletions

View File

@ -13,6 +13,7 @@ mercurial
bzr
github2
httplib2
django-sentry
-e git+http://github.com/nathanborror/django-basic-apps.git#egg=basic
-e hg+http://bitbucket.org/andrewgodwin/south/#egg=south
-e git+http://github.com/alex/django-taggit.git#egg=taggit

View File

@ -92,6 +92,9 @@ INSTALLED_APPS = (
'haystack',
'profiles',
'tastypie',
'sentry',
'paging',
'indexer',
# our apps
'projects',

View File

@ -83,6 +83,8 @@ urlpatterns = patterns('',
name='profiles_profile_edit'),
url(r'^profiles/', include('profiles.urls')),
url(r'^api/', include(v1_api.urls)),
url(r'^sentry/', include('sentry.urls')),
)
if settings.DEBUG: