I am writing a Django project that it needs to be divided as production/development, but however my project looks like this, how can I organize in order to execute python manage.py runserver
for dev or prod.
.
├── apps
│ ├── account
│ │ ├── migrations
│ │ │ └── __pycache__
│ │ └── __pycache__
│ ├── course
│ │ ├── migrations
│ │ └── __pycache__
│ ├── quizgame
│ │ ├── migrations
│ │ │ └── __pycache__
│ │ └── __pycache__
│ └── site
│ └── __pycache__
└── app
└── __pycache__
16 directories