-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Bug/Issue
When launching the django with cloud.gov, the home page will show django error
What was the problem?
The configuration (base.py) wasnt updated with the DIRS set under YOUR_APP_NAME
Line 54-68
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [],
It will need have directory insert similar to the code below:
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': ['YOUR_APP_NAME/templates'],
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working
