Rich Shepard
unread,Apr 14, 2017, 11:33:03 AM4/14/17Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
As a Django newcomer I'm still confused about project layout naming
conventions. Following the author's layout in '2 Scoops' chapter 3 for a
project I'm building for my own use to manage prospects and clients, I ran
cookiecutter pointing to pydanny's cookiecutter-django. I have several
subdirectory layers with two of them having the same name, and I need
clarification for these.
My directory tree looks like this (plain ASCII text in my MUA, alpine):
clientmgmtsystem_project/
└── clientmgmtsystem
├── clientmgmtsystem
│ ├── contrib
│ │ └── sites
│ │ └── migrations
│ ├── static
│ │ ├── css
│ │ ├── fonts
│ │ ├── images
│ │ ├── js
│ │ └── sass
│ ├── templates
│ │ ├── account
│ │ ├── bootstrap4
│ │ │ └── layout
│ │ ├── pages
│ │ └── users
│ └── users
│ ├── migrations
│ └── tests
├── config
│ └── settings
├── docs
├── requirements
└── utility
Directly under the top-level directory are the clientmgmtsystem/
subdirectory which contains another subdirectory with the same name. I
assume the topmost one is the Django project name, but what is the second
one? If I want to invoke the application using 'edb' as the application
name, which directory needs to be renamed?
Looking forward to learning,
Rich