Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
Instala addon de chat para mensajes
Browse files Browse the repository at this point in the history
  • Loading branch information
aitorres committed Dec 23, 2018
1 parent ff5d555 commit eba7dc3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
9 changes: 9 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
astroid==2.1.0
coverage==4.5.1
Django==1.11.15
-e git+https://github.com/radiac/django-conversate.git@786c1220889f053a3b236fe34f634044b995690a#egg=django_conversate
django-formtools==2.1
django-nose==1.4.5
gunicorn==19.9.0
isort==4.3.4
lazy-object-proxy==1.3.1
mccabe==0.6.1
nose==1.3.7
psycopg2-binary==2.7.5
pylint==2.2.2
pytz==2018.7
six==1.12.0
typed-ast==1.1.1
wrapt==1.10.11
3 changes: 2 additions & 1 deletion sip/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
'django.contrib.messages',
'django.contrib.staticfiles',
'gestion',
'django_nose'
'django_nose',
'conversate'
]

# Django-nose Measuring coverage
Expand Down
1 change: 1 addition & 0 deletions sip/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@
url(r'^login/$', auth_views.login, {'template_name': 'sesiones/login.html'}, name='login'),
url(r'^logout/$', auth_views.logout, name='logout'),
url(r'^admin/', admin.site.urls),
url(r'^chat/', include('conversate.urls', namespace='conversate')),
url(r'', include('gestion.urls')),
]

0 comments on commit eba7dc3

Please sign in to comment.