JCVI-Cloud / OSQA-Heroku

A repository that will get you running OSQA on Heroku quickly.

Home Page:http://osqa-heroku.herokuapp.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

*******************************************************************************
OSQA ON HEROKU
*******************************************************************************

For database backup from Heroku, use a local postgres engine:
http://postgresapp.com/

psql>SELECT datname FROM pg_database;
psql>create database osqa_bakcup_02052013;

~/osx-cmdln/>heroku db:pull postgres://kkrampis@localhost/osqa_backup_02052013 --app gsc-cloud
~/osx-cmdln/>heroku db:push postgres://kkrampis@localhost/osqa_backup_02052013 --app gsc-cloud-devel

*******************************************************************************
OSQA is the free, open source Q&A system you've been waiting for. Your OSQA 
site is more than just an FAQ page, it is a full-featured Q&A community. Users 
earn points and badges for useful participation, and everyone in the community 
wins. [1]

This repository contains a working copy of OSQA that will run on Heroku [2].
There were a few changes from the standard install to make everything run 
smoothly. I also added the Gunicorn WSGI webserver [3] for your convienence.

REQUIREMENTS

see requirements.txt

INSTALLATION

1 - Clone repository : git clone https://github.com/joshfinnie/osqa-heroku yourapp
2 - Fill out your settings : edit osqa/settings_local.py
3 - Create Heroku app : heroku create --stack cedar
4 - Push app to Heroku : git push heroku master
5 - Sync DB : heroku run python osqa/manage.py syncdb --all
6 - Create database superuser : Follow instructions in terminal
7 - Migrate DB : heroku run python osqa/manage.py migrate forum --fake
8 - View app : heroku open

RUN LOCALLY

1 - Create Virtualenv : virtualenv venv --distribute
2 - Source virtualenv : source venv/bin/activate
3 - Install dependencies : pip install -r requirements.txt
4 - Run app through Foreman : foreman start

References:
[1] http://www.osqa.net/
[2] http://www.heroku.com/
[3] http://gunicorn.org/

About

A repository that will get you running OSQA on Heroku quickly.

http://osqa-heroku.herokuapp.com/


Languages

Language:Python 83.9%Language:JavaScript 16.1%