Update messages

This commit is contained in:
Andros Fenollosa
2021-03-10 23:36:26 +01:00
parent 8ea8476cc8
commit 11c8266b62
5 changed files with 22 additions and 132 deletions

View File

@ -120,7 +120,7 @@ USE_TZ = True
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
ASGI_APPLICATION = "asgi.application"
ASGI_APPLICATION = "my_demo.asgi.application"
CHANNEL_LAYERS = {
"default": {

View File

@ -19,5 +19,5 @@ from apps.front import views
urlpatterns = [
path('admin/', admin.site.urls),
path('', views.blog),
path('', views.all_articles),
]