copy server new version of ammico app and add inde.html which list the available expositions
from django.conf.urls import patterns, url
from .views import User, ObtainAuthToken
urlpatterns = patterns('',
url(r'^user', User.as_view()),
url(r'^api-token-auth', ObtainAuthToken.as_view()),
)