omkarjere Posted April 24, 2015 Posted April 24, 2015 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 ?
sagnik Posted April 29, 2015 Posted April 29, 2015 No, you can use DJango 1.3 to develop your DJango site. Download DJango 1.2.7 from:https://www.djangoproject.com/m/releases/1.2/Django-1.2.7.tar.gzIf you need help on developing your DJango site, use the link below and follow the steps:http://www.heliohost.org/home/features/languages/python
badrihippo Posted June 7, 2015 Posted June 7, 2015 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.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now