Note: I see maaku's note about runserver, but I can hope can't I?
Note 2: as this comment lingers, can anyone recommend a living, non-invite-only Django hosting service?
11–20 of 21 posts
Note: I see maaku's note about runserver, but I can hope can't I?
Note 2: as this comment lingers, can anyone recommend a living, non-invite-only Django hosting service?
Question: is this a hack to get some Python on Heroku or is it a valuable potential Django server? When I did Rails work, I loved Heroku. Now that I do Django work, I love ... well ... my own server. I'm sure I should check out the various like-Heroku-but-Django services out there, but I'm used to Heroku. Valuable? Or move along nothing to see here? Note: I see maaku's note about runserver, but I can hope can't I? No…
Question: is this a hack to get some Python on Heroku or is it a valuable potential Django server? When I did Rails work, I loved Heroku. Now that I do Django work, I love ... well ... my own server. I'm sure I should check out the various like-Heroku-but-Django services out there, but I'm used to Heroku. Valuable? Or move along nothing to see here? Note: I see maaku's note about runserver, but I can hope can't I? No…
It's not a hack. Heroku's Cedar stack supports Python applications, first-class.
Suggests that Python/Django aren't so much first-class as incidental...
This is running via runserver, right? Don't use this for production. There are some nice pure-Python web servers though. To someone who knows more about Heroku's stack, if I replace “manage.py runserver” with, say, CherryPy, would there be any Heroku-specific performance issues to consider?
Please replace runserver line with the below line in your Procfile
web: bin/gunicorn_django --workers=4 --bind=0.0.0.0:$PORT django_project/settings.pyQuestion: is this a hack to get some Python on Heroku or is it a valuable potential Django server? When I did Rails work, I loved Heroku. Now that I do Django work, I love ... well ... my own server. I'm sure I should check out the various like-Heroku-but-Django services out there, but I'm used to Heroku. Valuable? Or move along nothing to see here? Note: I see maaku's note about runserver, but I can hope can't I? No…
However, heroku.com says "Run Anything" :)
Or you could go for https://gondor.io/ , a much more featureful solution by the makers of Pinax.
Question: is this a hack to get some Python on Heroku or is it a valuable potential Django server? When I did Rails work, I loved Heroku. Now that I do Django work, I love ... well ... my own server. I'm sure I should check out the various like-Heroku-but-Django services out there, but I'm used to Heroku. Valuable? Or move along nothing to see here? Note: I see maaku's note about runserver, but I can hope can't I? No…
Question: is this a hack to get some Python on Heroku or is it a valuable potential Django server? When I did Rails work, I loved Heroku. Now that I do Django work, I love ... well ... my own server. I'm sure I should check out the various like-Heroku-but-Django services out there, but I'm used to Heroku. Valuable? Or move along nothing to see here? Note: I see maaku's note about runserver, but I can hope can't I? No…
Question: is this a hack to get some Python on Heroku or is it a valuable potential Django server? When I did Rails work, I loved Heroku. Now that I do Django work, I love ... well ... my own server. I'm sure I should check out the various like-Heroku-but-Django services out there, but I'm used to Heroku. Valuable? Or move along nothing to see here? Note: I see maaku's note about runserver, but I can hope can't I? No…
I've used a couple of the django-heroku clones, Djangy, Gondor and Ep.io. Djangy is no more. Gondor is nice but lacking critical features (background jobs, caching... etc.), and generally seems like a sideshow to their consulting business. ep.io is ahead in features and quality so far. I have not tried DjangoZoom, as I was a little bit annoyed that they required me to pay for beeing in their beta test program.