Posts tagged with 'architecture'

  • A primer on Django project structure

    Here's an example recipe for a Django project layout:

    src/ apps/ blog/ project/ settings/ templates/ asgi.py, urls.py etc.. manage.py tests/ pyproject.yaml

    That's the basic layout we're going to discuss now. But if you want to get started quickly, try running the prototype startproject.sh command that will bootstrap the above, with …

    Read the rest of this entry »