pip install virtualenv
cd <kahadata>
virtualenv pyenv
pyenv/bin/pip install -r requirements.txt
APP_SETTINGS="kaha.config.DevelopmentConfig" KAHA_DSN='sqlite:///../kaha.sdb' pyenv/bin/python manager.py db upgrade
curl > data.json
sh bin/import.sh kaha
APP_SETTINGS="kaha.config.DevelopmentConfig" KAHA_DSN='sqlite:///../kaha.sdb' pyenv/bin/python app.py
<server>/resources/<district>
NOTE Return list of resources for matching district.
<server>/resources/<district>?for=need
NOTE Return list of resources matching the district and of type 'Need'
<server>/resources/<district>/<resource_type>
<server>/resources/<district>/<resource_type>,<resource_type>
NOTE Return list of resources for matching district and resource types
<server>/resource/<uuid>
NOTE Return a resource for the uuid
More to come..
See the LICENSE file for license rights and limitations (MIT).