Jump to content

Recommended Posts

Posted

I need to deploy a Django 1.7 app to my account. It has been written in Python 3.

 

Is there a deployment guide (heliohost specific) ?

 

Is it possible to use these versions of Python/Django instead of the ones provided by default ?

Posted

No, you can use DJango 1.3 to develop your DJango site. Download DJango 1.2.7 from:

If you need help on developing your DJango site, use the link below and follow the steps:

  • 1 month later...
Posted

What I do is to upload the whole Django source folder (whichever version you want) to the HelioHost server, eg. /home/[username]/pyenvs/django.

 

Then I add that directory to sys.path in the dispatch.wsgi file:

 

sys.path.insert(0, '/home/[username]/pyenvs')

 

I use the same method to add any other Python libraries I want to use.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...