3 comments

  • factorialboy23 minutes ago
    Cool project. I've built my own Django "harness" so I can't use it right now, but will consider for future projects.
  • mmarian1 hour ago
    I prefer sticking with Docker. I have a Swarm cluster of ~10 services, all on the same 5$/month VPS.
  • spwa41 hour ago
    Sometimes I wonder why people don&#x27;t just go back to apache mod_php, mod_python and know you can just deploy apps even if they aren&#x27;t perfectly isolated.<p>Everything still works, and if you have many small sites there&#x27;s no beating the efficiency of it.
    • ranger_danger1 hour ago
      Some people still do... it&#x27;s just that that means you&#x27;ve got to reinvent the wheel again when you inevitably need something like authentication, CRUD views, database support etc... that&#x27;s where Django comes in I think; it can handle all that but also stays out of the way a lot more than other frameworks in my opinion.
      • andrelaszlo39 minutes ago
        You can deploy Django apps on Apache with mod_wsgi, maybe that&#x27;s what they meant. Not sure about mod_python... I think it&#x27;s dead.<p><a href="https:&#x2F;&#x2F;docs.djangoproject.com&#x2F;en&#x2F;6.0&#x2F;howto&#x2F;deployment&#x2F;wsgi&#x2F;modwsgi&#x2F;" rel="nofollow">https:&#x2F;&#x2F;docs.djangoproject.com&#x2F;en&#x2F;6.0&#x2F;howto&#x2F;deployment&#x2F;wsgi&#x2F;...</a>