|
|
|
|
|
by adiyatmubarak
1464 days ago
|
|
I used Django, and personally I don't like Django startaproject command that not allow us to create project that contains dash "-". Also default appname has the same name with the project name can confusing the new comer in Django. I always structures my project like this when start my Django project. $ mkdir -p my-example-project/src $ cd my-example-project/src $ django-admin startproject youtube_downloader . so all Django related will be under src folder. |
|