python - What does INSTALLED_APPS setting in Django actually do? -
what actually do? branched out project 1 app 6 different apps , forgot update installed_apps
part of settings file. still works though didn't list new apps in. supposed happen? need include apps in installed_apps
?
yes.
installed_apps helps django sync database, run tests, urls work , more related issues.
maybe installed apps still works because main 1 calls others imports, django app nothing more simple python module imported when called in settings file, that's why invalid syntax error after run development server because import won't work invalid syntax.
Comments
Post a Comment