├── .cookie_secret.example ├── .gitignore ├── .google_secret.example ├── .hmac_secret.example ├── LICENCE ├── Procfile ├── README.md ├── client.py ├── client_requirements.txt ├── hardware_tests ├── leds.py └── switches.py ├── model.stl ├── requirements.txt ├── schema.sql ├── server.py ├── supervisor.conf.example └── templates ├── index.html ├── shower.html └── stats.html /.cookie_secret.example: -------------------------------------------------------------------------------- 1 | your_cookie_secret_here 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebymany/isthetoiletfree/HEAD/.gitignore -------------------------------------------------------------------------------- /.google_secret.example: -------------------------------------------------------------------------------- 1 | your_google_secret_here 2 | -------------------------------------------------------------------------------- /.hmac_secret.example: -------------------------------------------------------------------------------- 1 | your_hmac_secret_here 2 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebymany/isthetoiletfree/HEAD/LICENCE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebymany/isthetoiletfree/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebymany/isthetoiletfree/HEAD/README.md -------------------------------------------------------------------------------- /client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebymany/isthetoiletfree/HEAD/client.py -------------------------------------------------------------------------------- /client_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebymany/isthetoiletfree/HEAD/client_requirements.txt -------------------------------------------------------------------------------- /hardware_tests/leds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebymany/isthetoiletfree/HEAD/hardware_tests/leds.py -------------------------------------------------------------------------------- /hardware_tests/switches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebymany/isthetoiletfree/HEAD/hardware_tests/switches.py -------------------------------------------------------------------------------- /model.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebymany/isthetoiletfree/HEAD/model.stl -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebymany/isthetoiletfree/HEAD/requirements.txt -------------------------------------------------------------------------------- /schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebymany/isthetoiletfree/HEAD/schema.sql -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebymany/isthetoiletfree/HEAD/server.py -------------------------------------------------------------------------------- /supervisor.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebymany/isthetoiletfree/HEAD/supervisor.conf.example -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebymany/isthetoiletfree/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/shower.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebymany/isthetoiletfree/HEAD/templates/shower.html -------------------------------------------------------------------------------- /templates/stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madebymany/isthetoiletfree/HEAD/templates/stats.html --------------------------------------------------------------------------------