I have a projectfolder structure like this:
project
applications
__init__.py
app1
app2
app3
project
__init__.py
settings.py
In my settings.py Im trying to import the apps like this:
INSTALLED_APPS = (
'django.contrib.admin',
...
'applications.app1',
'applications.app2',
'applications.app3',
)
But if I try to migrate one of the app, I get this error:
./manage.py makemigrations applications.app1
App 'applications.app1' could not be found. Is it in INSTALLED_APPS?
What could be wrong? This kind of setup used to work with django 1.6
Is the applications folder on your
PYTHONPATH
?You could add it in the settings file by putting this underneath
BASE_DIR
: