├── .gitignore ├── .hgignore ├── LICENSE ├── Makefile ├── README.md ├── Tidmarsh API Documentation.pdf ├── Vagrantfile ├── backfill.sh ├── chain ├── __init__.py ├── core │ ├── __init__.py │ ├── admin.py │ ├── api.py │ ├── chaintestcase.py │ ├── hal.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20191017_1403.py │ │ ├── 0003_add_influx_convenience_tags.py │ │ ├── 0004_influx_setup.py │ │ └── __init__.py │ ├── models.py │ ├── resources.py │ ├── static │ │ ├── chainbrowser.js │ │ └── lib │ │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ │ ├── d3.layout.min.js │ │ │ ├── d3.min.js │ │ │ ├── html5shiv.js │ │ │ ├── jquery.js │ │ │ ├── jsoneditor.js │ │ │ ├── respond.min.js │ │ │ ├── rickshaw.min.css │ │ │ └── rickshaw.min.js │ ├── templates │ │ └── resource.html │ ├── test_core.py │ ├── test_migrations.py │ └── views.py ├── helpers │ ├── __init__.py │ └── logging.py ├── influx_client.py ├── localsettings_template.py ├── localsettings_vagrant.py ├── settings.py ├── urls.py ├── websocketd.py ├── wsgi.py └── zmq_passthrough.py ├── collectors ├── old │ ├── aggregate_scrape.py │ ├── atrium_scrape.py │ ├── pingpong_scrape.py │ ├── power_scrape.py │ ├── rbdata_scrape.py │ ├── rfid_scrape.py │ ├── shopcam_scrape.py │ ├── twitter_scrape.py │ └── weather_scrape.py ├── rfidpost ├── thermpost └── tidpost ├── dbreset.sh ├── docker ├── README.md ├── base │ ├── Dockerfile │ ├── build.sh │ ├── debug_base.sh │ ├── install-chain │ ├── run_base_no_persistance.sh │ ├── run_base_persistance.sh │ ├── run_base_tests.sh │ ├── start-chain │ ├── startup │ └── test-chain ├── build-all.sh ├── data │ ├── Dockerfile │ ├── build.sh │ ├── create_data_container.sh │ └── delete_data_container.sh └── dev │ ├── Dockerfile │ ├── build.sh │ ├── debug_dev.sh │ ├── run_dev_no_persistance.sh │ ├── run_dev_persistance.sh │ └── run_dev_tests.sh ├── doppel2_GraphViz.py ├── flask_sockets.py ├── hooks └── post-receive ├── initial_test_data.json ├── manage.py ├── manifest.sh ├── postgres_to_influx.py ├── scripts ├── chain_websocketd ├── chainsocketpolicyd ├── old │ ├── aggregate_scrape.py │ ├── atrium_scrape.py │ ├── pingpong_scrape.py │ ├── power_scrape.py │ ├── rbdata_scrape.py │ ├── rfid_scrape.py │ ├── shopcam_scrape.py │ ├── twitter_scrape.py │ └── weather_scrape.py └── therm_scrape.py ├── setup.py ├── system └── etc │ ├── nginx │ ├── conf.d │ │ └── chain.conf │ ├── sites-available │ │ └── chain.conf │ └── sites-enabled │ │ └── chain.conf │ └── supervisor │ └── conf.d │ ├── chain_webserver.conf │ ├── chain_websocketd.conf │ ├── chainsocketpolicyd.conf │ ├── medialab_rfidpost.conf │ ├── medialab_thermpost.conf │ ├── medialab_tidpost.conf │ └── tidmarsh_tidpost.conf ├── temp_misc └── ws_test │ ├── client.py │ ├── server.py │ └── zmqd.py ├── test_doppel2.py ├── test_websocketd_volume.py └── vagrant-initial-run-setup.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | localsettings.py 3 | *.egg-info 4 | .vagrant 5 | -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- 1 | syntax: glob 2 | 3 | *.pyc 4 | build 5 | *.swp 6 | .vagrant 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/README.md -------------------------------------------------------------------------------- /Tidmarsh API Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/Tidmarsh API Documentation.pdf -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/Vagrantfile -------------------------------------------------------------------------------- /backfill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/backfill.sh -------------------------------------------------------------------------------- /chain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chain/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chain/core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/admin.py -------------------------------------------------------------------------------- /chain/core/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/api.py -------------------------------------------------------------------------------- /chain/core/chaintestcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/chaintestcase.py -------------------------------------------------------------------------------- /chain/core/hal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/hal.py -------------------------------------------------------------------------------- /chain/core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/migrations/0001_initial.py -------------------------------------------------------------------------------- /chain/core/migrations/0002_auto_20191017_1403.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/migrations/0002_auto_20191017_1403.py -------------------------------------------------------------------------------- /chain/core/migrations/0003_add_influx_convenience_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/migrations/0003_add_influx_convenience_tags.py -------------------------------------------------------------------------------- /chain/core/migrations/0004_influx_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/migrations/0004_influx_setup.py -------------------------------------------------------------------------------- /chain/core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chain/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/models.py -------------------------------------------------------------------------------- /chain/core/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/resources.py -------------------------------------------------------------------------------- /chain/core/static/chainbrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/static/chainbrowser.js -------------------------------------------------------------------------------- /chain/core/static/lib/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/static/lib/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /chain/core/static/lib/bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/static/lib/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /chain/core/static/lib/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/static/lib/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /chain/core/static/lib/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/static/lib/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /chain/core/static/lib/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/static/lib/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /chain/core/static/lib/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/static/lib/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /chain/core/static/lib/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/static/lib/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /chain/core/static/lib/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/static/lib/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /chain/core/static/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/static/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /chain/core/static/lib/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/static/lib/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /chain/core/static/lib/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/static/lib/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /chain/core/static/lib/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/static/lib/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /chain/core/static/lib/d3.layout.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/static/lib/d3.layout.min.js -------------------------------------------------------------------------------- /chain/core/static/lib/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/static/lib/d3.min.js -------------------------------------------------------------------------------- /chain/core/static/lib/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/static/lib/html5shiv.js -------------------------------------------------------------------------------- /chain/core/static/lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/static/lib/jquery.js -------------------------------------------------------------------------------- /chain/core/static/lib/jsoneditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/static/lib/jsoneditor.js -------------------------------------------------------------------------------- /chain/core/static/lib/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/static/lib/respond.min.js -------------------------------------------------------------------------------- /chain/core/static/lib/rickshaw.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/static/lib/rickshaw.min.css -------------------------------------------------------------------------------- /chain/core/static/lib/rickshaw.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/static/lib/rickshaw.min.js -------------------------------------------------------------------------------- /chain/core/templates/resource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/templates/resource.html -------------------------------------------------------------------------------- /chain/core/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/test_core.py -------------------------------------------------------------------------------- /chain/core/test_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/core/test_migrations.py -------------------------------------------------------------------------------- /chain/core/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /chain/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chain/helpers/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/helpers/logging.py -------------------------------------------------------------------------------- /chain/influx_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/influx_client.py -------------------------------------------------------------------------------- /chain/localsettings_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/localsettings_template.py -------------------------------------------------------------------------------- /chain/localsettings_vagrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/localsettings_vagrant.py -------------------------------------------------------------------------------- /chain/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/settings.py -------------------------------------------------------------------------------- /chain/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/urls.py -------------------------------------------------------------------------------- /chain/websocketd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/websocketd.py -------------------------------------------------------------------------------- /chain/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/wsgi.py -------------------------------------------------------------------------------- /chain/zmq_passthrough.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/chain/zmq_passthrough.py -------------------------------------------------------------------------------- /collectors/old/aggregate_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/collectors/old/aggregate_scrape.py -------------------------------------------------------------------------------- /collectors/old/atrium_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/collectors/old/atrium_scrape.py -------------------------------------------------------------------------------- /collectors/old/pingpong_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/collectors/old/pingpong_scrape.py -------------------------------------------------------------------------------- /collectors/old/power_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/collectors/old/power_scrape.py -------------------------------------------------------------------------------- /collectors/old/rbdata_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/collectors/old/rbdata_scrape.py -------------------------------------------------------------------------------- /collectors/old/rfid_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/collectors/old/rfid_scrape.py -------------------------------------------------------------------------------- /collectors/old/shopcam_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/collectors/old/shopcam_scrape.py -------------------------------------------------------------------------------- /collectors/old/twitter_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/collectors/old/twitter_scrape.py -------------------------------------------------------------------------------- /collectors/old/weather_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/collectors/old/weather_scrape.py -------------------------------------------------------------------------------- /collectors/rfidpost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/collectors/rfidpost -------------------------------------------------------------------------------- /collectors/thermpost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/collectors/thermpost -------------------------------------------------------------------------------- /collectors/tidpost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/collectors/tidpost -------------------------------------------------------------------------------- /dbreset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/dbreset.sh -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/docker/base/Dockerfile -------------------------------------------------------------------------------- /docker/base/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/docker/base/build.sh -------------------------------------------------------------------------------- /docker/base/debug_base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/docker/base/debug_base.sh -------------------------------------------------------------------------------- /docker/base/install-chain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/docker/base/install-chain -------------------------------------------------------------------------------- /docker/base/run_base_no_persistance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/docker/base/run_base_no_persistance.sh -------------------------------------------------------------------------------- /docker/base/run_base_persistance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/docker/base/run_base_persistance.sh -------------------------------------------------------------------------------- /docker/base/run_base_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/docker/base/run_base_tests.sh -------------------------------------------------------------------------------- /docker/base/start-chain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/docker/base/start-chain -------------------------------------------------------------------------------- /docker/base/startup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/docker/base/startup -------------------------------------------------------------------------------- /docker/base/test-chain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/docker/base/test-chain -------------------------------------------------------------------------------- /docker/build-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/docker/build-all.sh -------------------------------------------------------------------------------- /docker/data/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu:18.04 2 | 3 | MAINTAINER Ken Leidal version: 0.0.1 4 | 5 | VOLUME /var/lib/postgresql 6 | 7 | CMD ["true"] 8 | -------------------------------------------------------------------------------- /docker/data/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker build -t chain/data_img . 4 | -------------------------------------------------------------------------------- /docker/data/create_data_container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/docker/data/create_data_container.sh -------------------------------------------------------------------------------- /docker/data/delete_data_container.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker rm chain_data 4 | -------------------------------------------------------------------------------- /docker/dev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/docker/dev/Dockerfile -------------------------------------------------------------------------------- /docker/dev/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker build -t chain/dev . 4 | -------------------------------------------------------------------------------- /docker/dev/debug_dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/docker/dev/debug_dev.sh -------------------------------------------------------------------------------- /docker/dev/run_dev_no_persistance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/docker/dev/run_dev_no_persistance.sh -------------------------------------------------------------------------------- /docker/dev/run_dev_persistance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/docker/dev/run_dev_persistance.sh -------------------------------------------------------------------------------- /docker/dev/run_dev_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/docker/dev/run_dev_tests.sh -------------------------------------------------------------------------------- /doppel2_GraphViz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/doppel2_GraphViz.py -------------------------------------------------------------------------------- /flask_sockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/flask_sockets.py -------------------------------------------------------------------------------- /hooks/post-receive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/hooks/post-receive -------------------------------------------------------------------------------- /initial_test_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/initial_test_data.json -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/manage.py -------------------------------------------------------------------------------- /manifest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/manifest.sh -------------------------------------------------------------------------------- /postgres_to_influx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/postgres_to_influx.py -------------------------------------------------------------------------------- /scripts/chain_websocketd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/scripts/chain_websocketd -------------------------------------------------------------------------------- /scripts/chainsocketpolicyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/scripts/chainsocketpolicyd -------------------------------------------------------------------------------- /scripts/old/aggregate_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/scripts/old/aggregate_scrape.py -------------------------------------------------------------------------------- /scripts/old/atrium_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/scripts/old/atrium_scrape.py -------------------------------------------------------------------------------- /scripts/old/pingpong_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/scripts/old/pingpong_scrape.py -------------------------------------------------------------------------------- /scripts/old/power_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/scripts/old/power_scrape.py -------------------------------------------------------------------------------- /scripts/old/rbdata_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/scripts/old/rbdata_scrape.py -------------------------------------------------------------------------------- /scripts/old/rfid_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/scripts/old/rfid_scrape.py -------------------------------------------------------------------------------- /scripts/old/shopcam_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/scripts/old/shopcam_scrape.py -------------------------------------------------------------------------------- /scripts/old/twitter_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/scripts/old/twitter_scrape.py -------------------------------------------------------------------------------- /scripts/old/weather_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/scripts/old/weather_scrape.py -------------------------------------------------------------------------------- /scripts/therm_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/scripts/therm_scrape.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/setup.py -------------------------------------------------------------------------------- /system/etc/nginx/conf.d/chain.conf: -------------------------------------------------------------------------------- 1 | ../sites-available/chain.conf -------------------------------------------------------------------------------- /system/etc/nginx/sites-available/chain.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/system/etc/nginx/sites-available/chain.conf -------------------------------------------------------------------------------- /system/etc/nginx/sites-enabled/chain.conf: -------------------------------------------------------------------------------- 1 | ../sites-available/chain.conf -------------------------------------------------------------------------------- /system/etc/supervisor/conf.d/chain_webserver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/system/etc/supervisor/conf.d/chain_webserver.conf -------------------------------------------------------------------------------- /system/etc/supervisor/conf.d/chain_websocketd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/system/etc/supervisor/conf.d/chain_websocketd.conf -------------------------------------------------------------------------------- /system/etc/supervisor/conf.d/chainsocketpolicyd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/system/etc/supervisor/conf.d/chainsocketpolicyd.conf -------------------------------------------------------------------------------- /system/etc/supervisor/conf.d/medialab_rfidpost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/system/etc/supervisor/conf.d/medialab_rfidpost.conf -------------------------------------------------------------------------------- /system/etc/supervisor/conf.d/medialab_thermpost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/system/etc/supervisor/conf.d/medialab_thermpost.conf -------------------------------------------------------------------------------- /system/etc/supervisor/conf.d/medialab_tidpost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/system/etc/supervisor/conf.d/medialab_tidpost.conf -------------------------------------------------------------------------------- /system/etc/supervisor/conf.d/tidmarsh_tidpost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/system/etc/supervisor/conf.d/tidmarsh_tidpost.conf -------------------------------------------------------------------------------- /temp_misc/ws_test/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/temp_misc/ws_test/client.py -------------------------------------------------------------------------------- /temp_misc/ws_test/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/temp_misc/ws_test/server.py -------------------------------------------------------------------------------- /temp_misc/ws_test/zmqd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/temp_misc/ws_test/zmqd.py -------------------------------------------------------------------------------- /test_doppel2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/test_doppel2.py -------------------------------------------------------------------------------- /test_websocketd_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/test_websocketd_volume.py -------------------------------------------------------------------------------- /vagrant-initial-run-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ResEnv/chain-api/HEAD/vagrant-initial-run-setup.sh --------------------------------------------------------------------------------