|
Heroku the cloud based platform as a service supports DJango. http://devcenter.heroku.com/articles/django Is there any reason why OSQA couldn't be installed on Heroku ? Has anyone tried to install it on Heroku ? EDIT... I've got most of the way through an install. Here's what I have so far assuming you already have the heroku command installed.
Create a requirements.txt file with the following contents
Your folder will now look something like
Edit the settings_local.py file and add the following to the very end
Also make sure the following modules are set to disabled in settings_local.py or you will get errors when doing searches. DISABLED_MODULES = ['books', 'recaptcha', 'project_badges', 'sphinxfulltext', 'pgfulltext'] This allows OSQA to pickup the database settings from Heroku. Next we add the code to a git repositiory
Create an heroku application
I had to run the push twice as sometimes repositories don't get picked up due to timeout issues. Next we migrate the database.
I had to run the migrations twice but then it everything seems to work apart from open-id login. |
|
Just created this git repository that will hopefully get you up and running... |

I've updated this to reflect diabling some modules that don't work on heroku.