├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── bug_report2.md ├── LICENSE ├── README.md ├── Thesis ├── chapters │ ├── chapter1_problemstatement.tex │ ├── chapter2_architecture.tex │ ├── chapter3_implementation.tex │ ├── chapter4_discussion.tex │ ├── chapter5_results.tex │ ├── chapter6_future_work.tex │ └── introduction.tex ├── font │ ├── GFSDidot.otf │ ├── GFSDidotBold.otf │ ├── GFSDidotBoldItalic.otf │ └── GFSDidotItalic.otf ├── images │ ├── CloudArch_v6.png │ ├── CloudEdgeArch_v4.png │ ├── Distributed Implementation Architecture (1).png │ ├── EdgeArch_v7.png │ ├── EdgeEdgeArch_v2.png │ ├── arduino.jpg │ ├── arduino_ide.png │ ├── balena_apps.png │ ├── balena_arch.png │ ├── balena_device.png │ ├── balena_gen_arch.jpg │ ├── blockchain.jpg │ ├── dev_serv_arch.png │ ├── dist_arch_hardware.png │ ├── docker_arch.png │ ├── droneroute.png │ ├── edgex_arch.png │ ├── edgex_arch1.png │ ├── edgex_fog_layer.jpg │ ├── fault_tolerance.png │ ├── filecoin.png │ ├── filecoin_terminal.png │ ├── fogComputingApplications(from-principles).png │ ├── helium.png │ ├── hierarchichal architecture(from-primer).png │ ├── hierarchichal_architecture(from-primer).png │ ├── iotArchCisco.jpg │ ├── ipfs.png │ ├── layer-fault-tolerant.png │ ├── layer-service-provision.png │ ├── layers_decentralized_v2.png │ ├── layers_now_v2.png │ ├── lora_arch.jpg │ ├── lorank8.jpg │ ├── loraserver-arch.png │ ├── mecarch.png │ ├── nodered_backend.png │ ├── nodered_devserv_api.png │ ├── nodered_devserv_boot1.png │ ├── nodered_devserv_boot2.png │ ├── nodered_gui.png │ ├── orchestrator_comp.png │ ├── raspberrypi3.jpg │ ├── rio-bridge.jpg │ ├── service_mig_1.png │ ├── service_mig_2.png │ ├── sharingEconomy.jpg │ ├── up_landscape.jpg │ ├── up_stamp.jpg │ └── usecase1map.png ├── intro │ ├── about.tex │ ├── acknowledgements.tex │ ├── certification-en.tex │ ├── certification-gr.tex │ ├── lastpage.tex │ ├── summary.tex │ └── titlepage.tex ├── library │ ├── bibliography.bib │ └── glossary.tex ├── main.tex ├── raspberrypi3.jpg └── upatras-thesis.sty └── source ├── README.md ├── arduino_lora └── test.ino ├── backEnd-nodeRED ├── balenaPush_backEnd.json └── filecoinInterface_backEnd.json └── balena ├── primary_rpi ├── docker-compose.yml ├── lora_appserver │ ├── Dockerfile │ ├── configuration │ │ └── lora-app-server.toml │ ├── create_conf.py │ └── init_lora-app-server.sh ├── nodered │ ├── Dockerfile │ ├── flows.json │ ├── generic_lora_device_profile.yaml │ ├── package.json │ ├── settings.js │ └── start_node.sh ├── orchestrator │ ├── Dockerfile │ ├── app2.py │ ├── data │ │ ├── docker-compose.yml │ │ ├── images │ │ │ └── hello.txt │ │ └── new_service_config.json │ └── requirements.txt ├── postgresql │ ├── Dockerfile │ └── configuration │ │ └── initdb │ │ ├── 002-init-loraserver_as.sh │ │ ├── 003-loraserver_as_trgm.sh │ │ └── 004-loraserver_as_hstore.sh └── redis │ └── Dockerfile └── secondary_rpi ├── docker-compose.1.yml ├── docker-compose.yml ├── lora_appserver ├── Dockerfile ├── configuration │ └── lora-app-server.toml └── init_lora-app-server.sh ├── nodered ├── Dockerfile ├── flows.json ├── generic_lora_device_profile.yaml ├── package.json ├── settings.js └── start_node.sh ├── orchestrator ├── Dockerfile ├── app2.py ├── data │ ├── docker-compose.yml │ └── images │ │ └── hello.txt └── requirements.txt ├── postgresql ├── Dockerfile ├── configuration │ └── initdb │ │ ├── 002-init-loraserver_as.sh │ │ ├── 003-loraserver_as_trgm.sh │ │ └── 004-loraserver_as_hstore.sh └── nodered │ ├── Dockerfile │ ├── flows.json │ ├── generic_lora_device_profile.yaml │ ├── package.json │ ├── settings.js │ └── start_node.sh └── redis └── Dockerfile /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/.github/ISSUE_TEMPLATE/bug_report2.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/README.md -------------------------------------------------------------------------------- /Thesis/chapters/chapter1_problemstatement.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/chapters/chapter1_problemstatement.tex -------------------------------------------------------------------------------- /Thesis/chapters/chapter2_architecture.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/chapters/chapter2_architecture.tex -------------------------------------------------------------------------------- /Thesis/chapters/chapter3_implementation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/chapters/chapter3_implementation.tex -------------------------------------------------------------------------------- /Thesis/chapters/chapter4_discussion.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/chapters/chapter4_discussion.tex -------------------------------------------------------------------------------- /Thesis/chapters/chapter5_results.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/chapters/chapter5_results.tex -------------------------------------------------------------------------------- /Thesis/chapters/chapter6_future_work.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/chapters/chapter6_future_work.tex -------------------------------------------------------------------------------- /Thesis/chapters/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/chapters/introduction.tex -------------------------------------------------------------------------------- /Thesis/font/GFSDidot.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/font/GFSDidot.otf -------------------------------------------------------------------------------- /Thesis/font/GFSDidotBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/font/GFSDidotBold.otf -------------------------------------------------------------------------------- /Thesis/font/GFSDidotBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/font/GFSDidotBoldItalic.otf -------------------------------------------------------------------------------- /Thesis/font/GFSDidotItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/font/GFSDidotItalic.otf -------------------------------------------------------------------------------- /Thesis/images/CloudArch_v6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/CloudArch_v6.png -------------------------------------------------------------------------------- /Thesis/images/CloudEdgeArch_v4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/CloudEdgeArch_v4.png -------------------------------------------------------------------------------- /Thesis/images/Distributed Implementation Architecture (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/Distributed Implementation Architecture (1).png -------------------------------------------------------------------------------- /Thesis/images/EdgeArch_v7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/EdgeArch_v7.png -------------------------------------------------------------------------------- /Thesis/images/EdgeEdgeArch_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/EdgeEdgeArch_v2.png -------------------------------------------------------------------------------- /Thesis/images/arduino.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/arduino.jpg -------------------------------------------------------------------------------- /Thesis/images/arduino_ide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/arduino_ide.png -------------------------------------------------------------------------------- /Thesis/images/balena_apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/balena_apps.png -------------------------------------------------------------------------------- /Thesis/images/balena_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/balena_arch.png -------------------------------------------------------------------------------- /Thesis/images/balena_device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/balena_device.png -------------------------------------------------------------------------------- /Thesis/images/balena_gen_arch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/balena_gen_arch.jpg -------------------------------------------------------------------------------- /Thesis/images/blockchain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/blockchain.jpg -------------------------------------------------------------------------------- /Thesis/images/dev_serv_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/dev_serv_arch.png -------------------------------------------------------------------------------- /Thesis/images/dist_arch_hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/dist_arch_hardware.png -------------------------------------------------------------------------------- /Thesis/images/docker_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/docker_arch.png -------------------------------------------------------------------------------- /Thesis/images/droneroute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/droneroute.png -------------------------------------------------------------------------------- /Thesis/images/edgex_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/edgex_arch.png -------------------------------------------------------------------------------- /Thesis/images/edgex_arch1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/edgex_arch1.png -------------------------------------------------------------------------------- /Thesis/images/edgex_fog_layer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/edgex_fog_layer.jpg -------------------------------------------------------------------------------- /Thesis/images/fault_tolerance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/fault_tolerance.png -------------------------------------------------------------------------------- /Thesis/images/filecoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/filecoin.png -------------------------------------------------------------------------------- /Thesis/images/filecoin_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/filecoin_terminal.png -------------------------------------------------------------------------------- /Thesis/images/fogComputingApplications(from-principles).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/fogComputingApplications(from-principles).png -------------------------------------------------------------------------------- /Thesis/images/helium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/helium.png -------------------------------------------------------------------------------- /Thesis/images/hierarchichal architecture(from-primer).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/hierarchichal architecture(from-primer).png -------------------------------------------------------------------------------- /Thesis/images/hierarchichal_architecture(from-primer).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/hierarchichal_architecture(from-primer).png -------------------------------------------------------------------------------- /Thesis/images/iotArchCisco.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/iotArchCisco.jpg -------------------------------------------------------------------------------- /Thesis/images/ipfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/ipfs.png -------------------------------------------------------------------------------- /Thesis/images/layer-fault-tolerant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/layer-fault-tolerant.png -------------------------------------------------------------------------------- /Thesis/images/layer-service-provision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/layer-service-provision.png -------------------------------------------------------------------------------- /Thesis/images/layers_decentralized_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/layers_decentralized_v2.png -------------------------------------------------------------------------------- /Thesis/images/layers_now_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/layers_now_v2.png -------------------------------------------------------------------------------- /Thesis/images/lora_arch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/lora_arch.jpg -------------------------------------------------------------------------------- /Thesis/images/lorank8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/lorank8.jpg -------------------------------------------------------------------------------- /Thesis/images/loraserver-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/loraserver-arch.png -------------------------------------------------------------------------------- /Thesis/images/mecarch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/mecarch.png -------------------------------------------------------------------------------- /Thesis/images/nodered_backend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/nodered_backend.png -------------------------------------------------------------------------------- /Thesis/images/nodered_devserv_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/nodered_devserv_api.png -------------------------------------------------------------------------------- /Thesis/images/nodered_devserv_boot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/nodered_devserv_boot1.png -------------------------------------------------------------------------------- /Thesis/images/nodered_devserv_boot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/nodered_devserv_boot2.png -------------------------------------------------------------------------------- /Thesis/images/nodered_gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/nodered_gui.png -------------------------------------------------------------------------------- /Thesis/images/orchestrator_comp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/orchestrator_comp.png -------------------------------------------------------------------------------- /Thesis/images/raspberrypi3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/raspberrypi3.jpg -------------------------------------------------------------------------------- /Thesis/images/rio-bridge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/rio-bridge.jpg -------------------------------------------------------------------------------- /Thesis/images/service_mig_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/service_mig_1.png -------------------------------------------------------------------------------- /Thesis/images/service_mig_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/service_mig_2.png -------------------------------------------------------------------------------- /Thesis/images/sharingEconomy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/sharingEconomy.jpg -------------------------------------------------------------------------------- /Thesis/images/up_landscape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/up_landscape.jpg -------------------------------------------------------------------------------- /Thesis/images/up_stamp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/up_stamp.jpg -------------------------------------------------------------------------------- /Thesis/images/usecase1map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/images/usecase1map.png -------------------------------------------------------------------------------- /Thesis/intro/about.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/intro/about.tex -------------------------------------------------------------------------------- /Thesis/intro/acknowledgements.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/intro/acknowledgements.tex -------------------------------------------------------------------------------- /Thesis/intro/certification-en.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/intro/certification-en.tex -------------------------------------------------------------------------------- /Thesis/intro/certification-gr.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/intro/certification-gr.tex -------------------------------------------------------------------------------- /Thesis/intro/lastpage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/intro/lastpage.tex -------------------------------------------------------------------------------- /Thesis/intro/summary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/intro/summary.tex -------------------------------------------------------------------------------- /Thesis/intro/titlepage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/intro/titlepage.tex -------------------------------------------------------------------------------- /Thesis/library/bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/library/bibliography.bib -------------------------------------------------------------------------------- /Thesis/library/glossary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/library/glossary.tex -------------------------------------------------------------------------------- /Thesis/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/main.tex -------------------------------------------------------------------------------- /Thesis/raspberrypi3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/raspberrypi3.jpg -------------------------------------------------------------------------------- /Thesis/upatras-thesis.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/Thesis/upatras-thesis.sty -------------------------------------------------------------------------------- /source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/README.md -------------------------------------------------------------------------------- /source/arduino_lora/test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/arduino_lora/test.ino -------------------------------------------------------------------------------- /source/backEnd-nodeRED/balenaPush_backEnd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/backEnd-nodeRED/balenaPush_backEnd.json -------------------------------------------------------------------------------- /source/backEnd-nodeRED/filecoinInterface_backEnd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/backEnd-nodeRED/filecoinInterface_backEnd.json -------------------------------------------------------------------------------- /source/balena/primary_rpi/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/primary_rpi/docker-compose.yml -------------------------------------------------------------------------------- /source/balena/primary_rpi/lora_appserver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/primary_rpi/lora_appserver/Dockerfile -------------------------------------------------------------------------------- /source/balena/primary_rpi/lora_appserver/configuration/lora-app-server.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/primary_rpi/lora_appserver/configuration/lora-app-server.toml -------------------------------------------------------------------------------- /source/balena/primary_rpi/lora_appserver/create_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/primary_rpi/lora_appserver/create_conf.py -------------------------------------------------------------------------------- /source/balena/primary_rpi/lora_appserver/init_lora-app-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/primary_rpi/lora_appserver/init_lora-app-server.sh -------------------------------------------------------------------------------- /source/balena/primary_rpi/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/primary_rpi/nodered/Dockerfile -------------------------------------------------------------------------------- /source/balena/primary_rpi/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/primary_rpi/nodered/flows.json -------------------------------------------------------------------------------- /source/balena/primary_rpi/nodered/generic_lora_device_profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/primary_rpi/nodered/generic_lora_device_profile.yaml -------------------------------------------------------------------------------- /source/balena/primary_rpi/nodered/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/primary_rpi/nodered/package.json -------------------------------------------------------------------------------- /source/balena/primary_rpi/nodered/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/primary_rpi/nodered/settings.js -------------------------------------------------------------------------------- /source/balena/primary_rpi/nodered/start_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/primary_rpi/nodered/start_node.sh -------------------------------------------------------------------------------- /source/balena/primary_rpi/orchestrator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/primary_rpi/orchestrator/Dockerfile -------------------------------------------------------------------------------- /source/balena/primary_rpi/orchestrator/app2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/primary_rpi/orchestrator/app2.py -------------------------------------------------------------------------------- /source/balena/primary_rpi/orchestrator/data/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/primary_rpi/orchestrator/data/docker-compose.yml -------------------------------------------------------------------------------- /source/balena/primary_rpi/orchestrator/data/images/hello.txt: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /source/balena/primary_rpi/orchestrator/data/new_service_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/primary_rpi/orchestrator/data/new_service_config.json -------------------------------------------------------------------------------- /source/balena/primary_rpi/orchestrator/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/primary_rpi/orchestrator/requirements.txt -------------------------------------------------------------------------------- /source/balena/primary_rpi/postgresql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/primary_rpi/postgresql/Dockerfile -------------------------------------------------------------------------------- /source/balena/primary_rpi/postgresql/configuration/initdb/002-init-loraserver_as.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/primary_rpi/postgresql/configuration/initdb/002-init-loraserver_as.sh -------------------------------------------------------------------------------- /source/balena/primary_rpi/postgresql/configuration/initdb/003-loraserver_as_trgm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/primary_rpi/postgresql/configuration/initdb/003-loraserver_as_trgm.sh -------------------------------------------------------------------------------- /source/balena/primary_rpi/postgresql/configuration/initdb/004-loraserver_as_hstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/primary_rpi/postgresql/configuration/initdb/004-loraserver_as_hstore.sh -------------------------------------------------------------------------------- /source/balena/primary_rpi/redis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/primary_rpi/redis/Dockerfile -------------------------------------------------------------------------------- /source/balena/secondary_rpi/docker-compose.1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/docker-compose.1.yml -------------------------------------------------------------------------------- /source/balena/secondary_rpi/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/docker-compose.yml -------------------------------------------------------------------------------- /source/balena/secondary_rpi/lora_appserver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/lora_appserver/Dockerfile -------------------------------------------------------------------------------- /source/balena/secondary_rpi/lora_appserver/configuration/lora-app-server.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/lora_appserver/configuration/lora-app-server.toml -------------------------------------------------------------------------------- /source/balena/secondary_rpi/lora_appserver/init_lora-app-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/lora_appserver/init_lora-app-server.sh -------------------------------------------------------------------------------- /source/balena/secondary_rpi/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/nodered/Dockerfile -------------------------------------------------------------------------------- /source/balena/secondary_rpi/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/nodered/flows.json -------------------------------------------------------------------------------- /source/balena/secondary_rpi/nodered/generic_lora_device_profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/nodered/generic_lora_device_profile.yaml -------------------------------------------------------------------------------- /source/balena/secondary_rpi/nodered/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/nodered/package.json -------------------------------------------------------------------------------- /source/balena/secondary_rpi/nodered/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/nodered/settings.js -------------------------------------------------------------------------------- /source/balena/secondary_rpi/nodered/start_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/nodered/start_node.sh -------------------------------------------------------------------------------- /source/balena/secondary_rpi/orchestrator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/orchestrator/Dockerfile -------------------------------------------------------------------------------- /source/balena/secondary_rpi/orchestrator/app2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/orchestrator/app2.py -------------------------------------------------------------------------------- /source/balena/secondary_rpi/orchestrator/data/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/orchestrator/data/docker-compose.yml -------------------------------------------------------------------------------- /source/balena/secondary_rpi/orchestrator/data/images/hello.txt: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /source/balena/secondary_rpi/orchestrator/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/orchestrator/requirements.txt -------------------------------------------------------------------------------- /source/balena/secondary_rpi/postgresql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/postgresql/Dockerfile -------------------------------------------------------------------------------- /source/balena/secondary_rpi/postgresql/configuration/initdb/002-init-loraserver_as.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/postgresql/configuration/initdb/002-init-loraserver_as.sh -------------------------------------------------------------------------------- /source/balena/secondary_rpi/postgresql/configuration/initdb/003-loraserver_as_trgm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/postgresql/configuration/initdb/003-loraserver_as_trgm.sh -------------------------------------------------------------------------------- /source/balena/secondary_rpi/postgresql/configuration/initdb/004-loraserver_as_hstore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/postgresql/configuration/initdb/004-loraserver_as_hstore.sh -------------------------------------------------------------------------------- /source/balena/secondary_rpi/postgresql/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/postgresql/nodered/Dockerfile -------------------------------------------------------------------------------- /source/balena/secondary_rpi/postgresql/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/postgresql/nodered/flows.json -------------------------------------------------------------------------------- /source/balena/secondary_rpi/postgresql/nodered/generic_lora_device_profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/postgresql/nodered/generic_lora_device_profile.yaml -------------------------------------------------------------------------------- /source/balena/secondary_rpi/postgresql/nodered/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/postgresql/nodered/package.json -------------------------------------------------------------------------------- /source/balena/secondary_rpi/postgresql/nodered/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/postgresql/nodered/settings.js -------------------------------------------------------------------------------- /source/balena/secondary_rpi/postgresql/nodered/start_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/postgresql/nodered/start_node.sh -------------------------------------------------------------------------------- /source/balena/secondary_rpi/redis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odyslam/thesis-eaas/HEAD/source/balena/secondary_rpi/redis/Dockerfile --------------------------------------------------------------------------------