Hello i built my first Django app and i tried to make it live using heroku. My app works fine locally. When i deployed it on heroku i get this error: "Application error An error occurred in the application and your page could not be served. If you are the application owner, check your logs for details."
I am really new to this. I dont know where to look for logs. I tried this tutorial to deploy the app. My code on github.
Any ideas?
# Database
# https://docs.djangoproject.com/en/2.0/ref/settings/#databases
db_from_env = dj_database_url.config(conn_max_age=500)
DATABASES['default'].update(db_from_env)
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}