Support website for Cellabus. This will be a simple Q/A site based on Flask with data exported from Uservoice.
Layout
The plan is that this will contain an index page of questions grouped by section. Each question will be a link to a page with the question/answer.
Architecture
This is based on base-flask. It will serves data from the various articles as simple HTML templates.
Development
With virtualenvwrapper:
mkvirtualenv app -p python3.5 pip install -r requirements.txt ln -s .env.development .env python app/serve.py
Testing
pip install -r requirements-test.txt
cd app
coverage run -m unittest discoverProduction
ln -s .env.production .env bin/setup.sh