How to create SaaS application with Python and Django

后端 未结 4 1710
终归单人心
终归单人心 2021-01-29 18:30

Can you advice me with some articles/applications that allows you create SaaS(Software as a Service) application with Python and Django.

For the moment the general topic

4条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-29 18:56

    1. one project, this will make maintenance easier. I handle host resolution with middleware in django-ikari.
    2. you don't. see #1
    3. I use the following :

      • django-ikari : anchored (sub)domains
      • django-guardian : per object permissions
      • django-tastypie : easy RESTful api
      • django-userprofiles : better than django-registration
      • django-billing : plan based subscription controls
      • django-pricing : plan based subscription definition
    4. While not necessary, the following will help in the long run:

      • django-hunger : private beta signups
      • django-waffle : feature flip
      • django-classy-tags : nice, easy and neat templatetag creation
      • django-merchant : abstracted payment gateway framework
      • django-mockups : fast testing with models
      • django-merlin : better multi-step forms (wizards)
    5. Finally, nice to have

      • django-activity-stream

提交回复
热议问题