Contribute Guide
Last updated
Last updated
We are constantly looking for a feedback from our community on how to improve JIoT. If you have an idea or you have some new features in mind, please open an issue at JIoT . Please make sure that the same ticket is not already opened in the issues list (or something very similar).
Before you start any implementation please wait from the JIoT team to comment on your ticket. We’ll try to get back to you ASAP.
To build and run JIoT instance make sure that you have Java and Maven installed onto your system.
Please refer to Building from sources section where and install processes are described.
Once you have completed installation of required tools please fork official .
Now you can clone source code of the forked project.
NOTE: We will refer later to the folder where you have cloned repository as ${JT_WORK_DIR}.
If are building on Windows for the first time, you may need to run these commands to ensure the required npm dependencies are available:
Before importing the project into the IDE please build it using Maven tool from the root folder:
A build will generate all the protobuf files in the application module that are needed for the correct compilation in your IDE.
Next, import the project into your favorite IDE as Maven project. See separate instructions for and .
NOTE: If you are using Eclipse, after the maven project is imported to the IDE, We recommend you to disable Maven Project builder on ui project. This will improve the Eclipse performance a lot, because it will avoid Eclipse Maven builder from digging in node_modules directory (which is unnecessary and only causes Eclipse to hang). To do this, right-click on ui project, go to Properties -> Builders, and then uncheck the Maven Project Builder checkbox and then click Ok.
By default, JIoT uses embedded HSQLDB instance which is very convenient for evaluation or development purposes.
Alternatively, you can configure your platform to use either scalable Cassandra DB cluster or various SQL databases. If you prefer to use an SQL database, we recommend PostgreSQL.
NOTE: This is an optional step. It is required only for production usage. You can use embedded HSQLDB for platform evaluation or development
Once PostgreSQL is installed you may want to create a new user or set the password for the main user.
When it’s done, connect to the database and create jiot DB:
Please refer to appropriate section where you find instructions on how to install cassandra:
NOTE: This is an optional step. It is required only for production usage. You can use embedded HSQLDB for platform evaluation or development
Edit JIoT configuration file:
Comment ‘# HSQLDB DAO Configuration’ block.
For PostgreSQL:
Uncomment ‘# PostgreSQL DAO Configuration’ block. Be sure to update the postgres databases username and password in the bottom two lines of the block (here, as shown, they are both “postgres”).
For Cassandra DB:
Locate and set database type configuration parameter to ‘cassandra’.
NOTE: If your Cassandra server is installed on the remote machine or it is bind to custom interface/port, you need to specify it in jiot.yml as well. Please, tefer to the configuration guide for the detailed description of jiot.yml file and what properties are used for cassandra connection configuration.
After the jiot.yml file was updated, please rebuild the application module so that the updated jiot.yml gets populated to the target directory:
In order to create the database tables, run the following:
On Linux:
On Windows:
Running UI container in hot redeploy mode.
By default, JIoT UI is served at 8080 port. However, you may want to run UI in the hot redeploy mode.
NOTE: This step is optional. It is required only if you are going to do changes to UI.
To start UI container in hot redeploy mode you will need to install node.js first. Once node.js is installed you can start container by executing next command:
This will launch a special server that will listen on 3000 port. All REST API and websocket requests will be forwarded to 8080 port.
Running server-side container
To start server-side container you can use couple options.
As a first option, you can run the main method of org.jiot.server.JIoTServerApplication class that is located in application module from your IDE.
As a second option, you can start the server from command line as a regular Spring boot application:
Navigate to http://localhost:3000/ or http://localhost:8080/ and login into JIoT using demo data credentials:
login jiot@astian.org
password jiot
Make sure that you are able to login and everything has started correctly.
Now you are ready to start to do some changes to the codebase. Update server-side or UI code. Verify that changes that you have done meet your requirements and expectations from the user perspective.
Before you commit your changes to the remote repository build it locally with tests run using Maven:
Make sure that build is fine and all the tests are successful.
When you are done with code changes commit and push them to your forked repository with some meaningful comment:
Please create pull request into the master branch by default (the additional branch name will be provided during the initial stage of gitlab issue discussion if needed).
If there are some conflicts because new stuff has arrived into JIoT master branch before your commit, please resolve those conflicts to continue.
Sign up contribution license agreement (CLA) and verify that remote build has been successful. The CLA is signed atomatically using the github CLA bot.
Please use for the PostgreSQL installation instructions.