A RESTful API written in Django for user submission and lookup of home sales data
Switch branches/tags
Nothing to show
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
docs
homes
schema
.gitignore
.travis.yml
LICENSE
Procfile
README.md
requirements-docs.txt
requirements.txt
runtime.txt

README.md

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.