Skip to content
Norman Jäckel edited this page Jan 17, 2020 · 4 revisions

How to name and structure folders

Current tree (some parts of it)

openslides_backend
├── action_handler  -> should be renamed to "actions"
│   ├── actions  -> bad double name
│   │   ├── action_map.py
│   │   ├── base.py
│   │   ├── mediafile
│   │   ├── topic
│   │   │   ├── create.py
│   │   │   └── update.py
│   │   └── types.py
│   ├── handler.py
├── adapters
├── http
│   ├── application.py
│   ├── environment.py
│   └── views.py
├── logging
├── models
├── shared
│   ├── exceptions.py
│   ├── filters.py
│   ├── interfaces.py
│   ├── patterns.py
│   ├── permissions
│   └── schema.py
└── wsgi.py
Clone this wiki locally