/home-data-api

A RESTful API written in Django for user submission and lookup of home sales data

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

home-data-api

A RESTful API written in Django for user submission and lookup of home sales data

Status

Master

Build Status Coverage Status Documentation Status

Develop

Build Status Coverage Status Documentation Status

Setting up

This project was built with python 3.4

$ python3 -m virtualenv venv
$ source ./venv/bin/activate
$ pip install -r requirements.txt
$ cd homes
$ python manage.py migrate --settings=homes.settings_local
$ python manage.py loaddata api/fixtures/groups.json --settings=homes.settings_local
$ python manage.py createsuperuser --settings=homes.settings_local
$ python manage.py runserver --settings=homes.settings_local

Then head to http://localhost:8000/api/ in your browser to get started.