This project is the OpenMotics Gateway backend. It provides an API used by the frontend, by the Cloud and by third party applications. It is the glue between the OpenMotics Master (microcontroller) and the rest of the world.
We use git-flow which implements Vincent Driessen's
branching model. This means our default branch is develop
, and master
contains production releases.
When working on this repository, we advice to use following git-flow config:
Branch name for production releases: master
Branch name for "next release" development: develop
Feature branch prefix: feature/
Bugfix branch prefix: bugfix/
Release branch prefix: release/
Hotfix branch prefix: hotfix/
Support branch prefix: support/
Version tag prefix: v
To set these configuration parameters:
git config gitflow.branch.master master
git config gitflow.branch.develop develop
git config gitflow.prefix.feature feature/
git config gitflow.prefix.bugfix bugfix/
git config gitflow.prefix.release release/
git config gitflow.prefix.hotfix hotfix/
git config gitflow.prefix.support support/
git config gitflow.prefix.versiontag v
We use SemVer for versioning. For the versions available, see the tags on this repository
- Frederick Ryckbosch - GitHub user: fryckbos
- Kenneth Henderick - GitHub user: khenderick
This project is licensed under the AGPLv3 License - see the LICENSE.md file for details
- Thanks to everybody testing this code and providing feedback.