My Django project structure is:
Django
/proj /frontend /server /proj /app1 /app2 manage.py
How do I run python ma
python ma
The simplest way I found is to go inside the server folder and create an __init__.py file:
server
__init__.py
touch __init__.py
Then, create any app you want:
django-admin startapp {{APP NAME}}