Closed giobber closed 1 year ago
Actually project has this structure (as presented in Django tutorial)
asso-django/ admin/ academy/ common/ ... website/ manage.py
Django REST Framework propose another way
This way all apps are contained inside admin package (which could be called asso)
asso
Also this structure permits to convert common app (which is never used as app) in a normal python module
Choose the hybrid package/rest framework way
asso-django/ - .git - docs/ - asso/ - core/ (old common package) - academy/ - membership/ - website/ - settings.py - manage.py - pyproject.toml
Actually project has this structure (as presented in Django tutorial)
Django REST Framework propose another way
This way all apps are contained inside admin package (which could be called
asso
)Also this structure permits to convert common app (which is never used as app) in a normal python module