Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 1.09 KB

README.md

File metadata and controls

22 lines (14 loc) · 1.09 KB

ThingStore

That thing where things to to store their stuff. An open source numerical data store and visualization interface for the internet of things.

Deployment

We have deployment instructions in the wiki, currently only for Heroku.

API

ThingStore allows you to read and write to the datastore via an API. Documentation on how to do that it written in the wiki.

Development

ThingStore is written in Python, using Django. For easier database migrations, South is used. These and other requirements are noted in the requirements file requirements.txt. When first starting development, create a virtual environment to satisfy these requirements without changing anything on your system:

virtualenv env
source env/bin/activate
pip install -r requirements.txt
python manage.py syncdb
python manage.py migrate

As last step, start the local development server using ./manage.py runserver and point your browser to http://127.0.0.1:8000.