mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
Now uses Sentry 1.13.5 / Raven 0.7.0 correctly, fixed the requirements
This commit is contained in:
@@ -65,7 +65,7 @@ INSTALLED_APPS = (
|
|||||||
'nexus',
|
'nexus',
|
||||||
'gargoyle',
|
'gargoyle',
|
||||||
'sentry',
|
'sentry',
|
||||||
'sentry.client',
|
'raven.contrib.django',
|
||||||
'south',
|
'south',
|
||||||
'piston',
|
'piston',
|
||||||
'djcelery',
|
'djcelery',
|
||||||
@@ -167,7 +167,7 @@ LOGGING = {
|
|||||||
},
|
},
|
||||||
'sentry': {
|
'sentry': {
|
||||||
'level': 'DEBUG',
|
'level': 'DEBUG',
|
||||||
'class': 'sentry.client.handlers.SentryHandler',
|
'class': 'raven.contrib.django.handlers.SentryHandler',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
'loggers': {
|
'loggers': {
|
||||||
|
|||||||
3
fabfile.py
vendored
3
fabfile.py
vendored
@@ -159,7 +159,8 @@ def restart_uwsgi():
|
|||||||
@task
|
@task
|
||||||
def runserver(port=3333):
|
def runserver(port=3333):
|
||||||
with prefix('. .env/bin/activate'):
|
with prefix('. .env/bin/activate'):
|
||||||
local('app/manage.py runserver %s' % port, capture=False)
|
ip = local("""ip addr list eth0 |grep "inet " |cut -d' ' -f6|cut -d/ -f1""", capture=True)
|
||||||
|
local('app/manage.py runserver %s:%s' % (ip, port), capture=False)
|
||||||
|
|
||||||
@task
|
@task
|
||||||
def test():
|
def test():
|
||||||
|
|||||||
@@ -11,7 +11,8 @@ flup
|
|||||||
celery==2.2.6
|
celery==2.2.6
|
||||||
django-celery==2.2.4
|
django-celery==2.2.4
|
||||||
xmpppy
|
xmpppy
|
||||||
django-sentry
|
django-sentry==1.13.5
|
||||||
|
raven==0.7.0
|
||||||
nexus
|
nexus
|
||||||
-e git+https://github.com/nikdoof/gargoyle.git@dca57fc4b437b85f8cbc#egg=gargoyle
|
-e git+https://github.com/nikdoof/gargoyle.git@dca57fc4b437b85f8cbc#egg=gargoyle
|
||||||
beautifulsoup
|
beautifulsoup
|
||||||
|
|||||||
Reference in New Issue
Block a user