Orchestra is a scheduler app that can be used as an event management system that instructs robots to perform coordinated actions.
"Can't you just do it yourself? Why is this useful?"
Suppose you have multiple tasks in different orders, based on a specific day. As a programmer, you would write the program for each task. Now, if you want to modify or cancel some tasks, re-writing the server code won't be the best option.
If robot implements how and Orchestra implements when, then the problem would be simpler.
Suppose you have multiple tasks in different orders, based on a specific day. As a user, you would want to schedule the events on the calendar. Now, if some tasks are limited to prebuilt options of the google home mini, you would be stuck at that point.
If there are robots that can perform the desired function and Orchestra which sets up robots when condition, then the user would be satisfied.
Install MongoDB Community Edition.
Use a Node version manager nvm to install Node.js and npm.
$ npm install -g npm
Use npm to install and run Orchestra.
$ npm install orchestra
$ npm run dev
GitHub will be used for the version control of this project.
For agile software development, Git flow is used for this project. The Git branch structure will follow below:
main
└─ develop
└─ feature
└─ feature1
└─ feature2
└─ release
The core issues will be discussed in discord server. Some of the changes and error reports will be controlled through GitHub issues.
If you make some changes to the code, a pull request should be made, following the steps below:
- push the changes into a branch.
- Create a pull request from your branch into the develop branch. Please follow the template when you create a pull request.
- Wait until the other developers to review and approve the pull request.
- After being approved, then merge your pull request. Squash and merge option is recommended.
Following Git flow, if you make some changes to the code, please push the changes into a branch. Then, create a pull request from your branch into the develop branch.