└── backend
├── backend
│ ├── init.py
│ ├── pycache
│ │ ├── init.cpython-38.pyc
│ │ ├── settings.cpython-38.pyc
│ │ ├── urls.cpython-38.pyc
│ │ └── wsgi.cpython-38.pyc
│ ├── asgi.py
│ ├── settings
│ │ ├── init.py
│ │ ├── pycache
│ │ │ └── init.cpython-38.pyc
│ │ ├── common.py
│ │ ├── dev.py
│ │ └── prod.py
│ ├── urls.py
│ └── wsgi.py
├── db.sqlite3
├── manage.py
├── requirements
│ ├── common.txt
│ ├── dev.txt
│ └── prod.txt
└── requirements.txt
└── backend
├── backend
│ ├── init.py
│ ├── pycache
│ │ ├── init.cpython-38.pyc
│ │ ├── settings.cpython-38.pyc
│ │ ├── urls.cpython-38.pyc
│ │ └── wsgi.cpython-38.pyc
│ ├── asgi.py
│ ├── settings
│ │ ├── init.py
│ │ ├── pycache
│ │ │ └── init.cpython-38.pyc
│ │ ├── common.py
│ │ ├── dev.py
│ │ └── prod.py
│ ├── urls.py
│ └── wsgi.py
├── db.sqlite3
├── manage.py
├── requirements
│ ├── common.txt
│ ├── dev.txt
│ └── prod.txt
└── requirements.txt