[Django]-Possible to host a django site on github pages?

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.

πŸ‘€Alasdair

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.

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.

πŸ‘€JellisHeRo

Leave a comment