This repository contains the Prometeo solution application database that manages sensor readings over time. It targets MariaDB.
- Create a MariaDB database instance. This one has been set up via a Helm Chart on the IBM Kubernetes service.
- Create the database
CREATE DATABASE IF NOT EXISTS prometeo character set UTF8mb4 collate utf8mb4_unicode_ci;
- Log into the instance and create the database structure
mysql> use prometeo;
mysql> source prometeo.sql
- Create the stored procedures
mysql> use prometeo;
mysql> source procedures.sql
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting Prometeo pull requests.
This project is licensed under the Apache 2 License - see the LICENSE file for details.