Django-manage.py-anywhere
Django-manage.py-anywhere copied to clipboard
Couldn't find in subdirs
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
└── ...