﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
30559	Django 2.2 | Auto-reload doesn't detect changes in new apps.	Ron	nobody	"Just created a new project with Django CLI. My project split into multiple apps so the structure is like this:


{{{
project
app1/
    ..
    migrations/
    views/
    __init__.py
    apps.py
    urls.py
core/
    ..
    migrations/
    views/
    __init__.py
    apps.py
    urls.py
project/
    settings/
        __init__.py
        common.py
        development.py
    __init__.py
    urls.py
    wsgi.py
}}}

I'm using Docker to build the environment and make sure that both apps registered in the INSTALLED_APPS property.

The problem is that the Django doesn't listen to app1 app, but only to core app. Also, if I add another folder under the core app, it's doesn't listen to this folder as well.

I've changed the BASE_DIR property to support the new structure:

{{{
BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
}}}

Any suggestions?

"	Bug	closed	Utilities	2.2	Normal	needsinfo			Unreviewed	0	0	0	0	0	0
