I have a Django project, say, "project1". Typical folder structure for applications:
/project1/
/app1/
/app2/
...
__init__.py
manage.py
settings.py
urls.py
What if I want to store all my applications in a separate folder, for example, applications? Thus, the structure should look like this:
/project/
apps/
app1/
app2/
...
__init__.py
manage.py
settings.py
urls.py
source
share