Is there such a thing for Django as there is Heroku for Ruby on Rails

后端 未结 10 513
夕颜
夕颜 2021-02-01 22:37

Is there a cloud based development for Django, such as there is cloud based development and hosting environment for Ruby / heroku

相关标签:
10条回答
  • 2021-02-01 23:10

    google app engine might do what you want - take a look at it here http://code.google.com/appengine/articles/django.html

    0 讨论(0)
  • 2021-02-01 23:11

    Heroku itself is now for Django. It supports Django with the new Cedar "run anything" release.

    I now use Heroku for a few django projects. Setup, including adding a postgres DB and deployment is straight-forward, fast, and free or cheap for small projects. I use and recommend AWS S3 (via django-storages) to host static & uploaded files, and running gunicorn if you're using Heroku in production, all of which is pretty simple to setup. Heroku's own documentation for its support for python & django is pretty good. See:

    http://devcenter.heroku.com/articles/django

    it was sufficient for me, and should get you there and beyond.

    0 讨论(0)
  • 2021-02-01 23:15

    You could check out DjangoZoom: "turn your django code into a live, public app in five minutes" on cloud servers. You can currently request an invite for the beta version.

    0 讨论(0)
  • 2021-02-01 23:23

    Djangy seems to be similar. I used neither, so I can't say how similar they are. Djangy only supports MySQL as a database, which is kind of a deal breaker for me.

    /edit: as Zolomon says, Djangy closed its doors. I'll recommend RJBrady's answer for some serious upvoting.

    0 讨论(0)
提交回复
热议问题