Hacker News new | ask | show | jobs
by shykes 4213 days ago
Jerome don't forget that Django is monolithic. Docker is modular (ie swarm and machine are entirely separate binaries).
1 comments

You can use Django as swappable libraries. I worked on some projects at Google that used Django for the request routing, templates, and helpers, but completely swapped out the ORM for Google's own RPC system. Jinja2 is basically the Django templating language pulled out into its own library; before it existed, people would just use django.template. Some folks just use the ORM and request routing and then stick a JSON serializer on top to send data to an Angular SPA.