-1

i found this question in stackoverflow link. but I still haven't received the answer to my question, what exactly is the standard project structure in Django?

Mohammad Nazari
  • 137
  • 1
  • 12

1 Answers1

1
my_project/
├─ my_project/
│  ├─ settings.py
│  ├─ wsgi.py
│  ├─ asgi.py
│  ├─ __init__.py
│  ├─ urls.py
├─ my_app/
│  ├─ __init__.py
│  ├─ urls.py
│  ├─ models.py
│  ├─ views.py
│  ├─ admin.py/
│  ├─ apps.py
│  ├─ tests.py

Does that answer your question?

If not, please write down what you do not understand

TheTS
  • 142
  • 8