Edit this fileFiles & Directories Structure
.
├── api (Codes are stored here)
│ ├── core (Django core files)
│ │ ├── apps.py ()
│ │ ├── asgi.py ()
│ │ ├── models.py (I think this should be deleted some time)
│ │ ├── settings.py (App settings)
│ │ ├── tests.py (Contains automated test and asserts for software health check)
│ │ ├── urls.py (Contains routing rules)
│ │ ├── views.py (Registers the views which are stored in view/ directory)
│ │ └── wsgi.py ()
│ ├── __init__.py
│ ├── model (Models are responsible for data presentation)
│ │ └── article.py
│ ├── serializer (Serializers are responsible for converting data from/to JSON)
│ │ ├── group.py
│ │ └── user.py
│ └── view (Views are responsible for handling requests and choosing logics)
│ ├── group.py
│ └── user.py
├── manage.py (Django file which acts as project main file)
└── README.md (Contains linkt to project's documentation)