94
You can deploy Django on a physical server or VPS (see the deployment docs). You donβt have to use a a platform as a service like OpenShift or Heroku.
It is not possible to host a Django site on Github pages. Github pages is for static sites, whereas Django requires Python to generate pages dynamically.
14
If you do not want to use OpenShift, but instead would prefer a more python-centric environment, I just discovered PythonAnywhere today. They appear to allow you to host Django websites and you can even use it for the Django tutorial.
- [Django]-AttributeError: module 'html.parser' has no attribute 'HTMLParseError'
- [Django]-How to pass multiple values for a single URL parameter?
- [Django]-Pypi see older versions of package
1
Honestly, that may depend on whether you can make a static site using django, because GitHub will work for you if you have a static site.
- [Django]-Itertools.groupby in a django template
- [Django]-What is the meaning of bind = True keyword in celery?
- [Django]-Dropdown in Django Model
Source:stackexchange.com