Django-manage.py-anywhere icon indicating copy to clipboard operation
Django-manage.py-anywhere copied to clipboard

Couldn't find in subdirs

Open Shi-Raida opened this issue 3 years ago • 0 comments

My django project has the following architecture, i.e. my manage.py file is not in the root of my project but in the src/ folder.

It is not found because the v2.0 only goes up. The v1.0 was going down too.

project
├── src
│   ├── project
│   │   ├── __init__.py
│   │   ├── asgi.py
│   │   ├── settings.py
│   │   ├── urls.py
│   │   └── wsgi.py
│   ├── __init__.py
│   └── manage.py
├── README.md
├── node_modules
├── package.json
├── package-lock.json 
└── ...

Shi-Raida avatar Apr 13 '22 18:04 Shi-Raida