You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A django project as generated currently has nested directories with the same name. The outer one is the "project" directory and the inner one is the "project settings" diretory.
In our case this is pybay and pybay/pybay.
Currently settings.INSTALLED_APPS includes the project settings directory as an app and we have some apps in the project directory, some in the project settings folder. Eg:
A django project as generated currently has nested directories with the same name. The outer one is the "project" directory and the inner one is the "project settings" diretory.
In our case this is
pybay
andpybay/pybay
.Currently settings.INSTALLED_APPS includes the project settings directory as an app and we have some apps in the project directory, some in the project settings folder. Eg:
There should not be an app called pybay. Apps in the settings folder need to move up one level. (Eg
pybay.faqs
should just bepybay
.)This ticket can be closed when we've made the necessary changes so that apps live in a consistent location relative to the project root.
The text was updated successfully, but these errors were encountered: