Let Django know

Report a typo

You have created the project called coding_events with the application hackathons inside. Modify your settings.py file in order to let Django know about its existence.

Write a program in Python 3
DEBUG = True
ALLOWED_HOSTS = []
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
]
___

Create a free account to access the full topic