Development¶
Coding Conventions and Guidelines¶
Here you find an overview of our conventions on coding and version control.
Also have a look at our Contribution Guidelines.
git¶
We use GitHub Flow
Keep the
main
branch stable, as releases are derived from it. When contributing a breaking change, like API changes, inform the team about the intended merge.When contributing code, create a Merge Request, and assign the repository maintainer for review. Do not squash commits when performing the merge.
We write changelogs in the keep a changelog format. Remind yourself to update the
CHANGELOG.md
before committing code. Remember that changelogs are meant for humans and should reflect the end-user value. When doing a release we use the changelog as our Release Notes. When providing code via a Merge Request the maintainer will remind you to update the changelog too :-)Avoid crunching commits and rebasing; set
git config pull.rebase false
to use recursive as your default merge strategyWe use conventional commits
Mention related ticket IDs where applicable, like
#123
orplay#123
when cross-referencing between repositories. For example you can close tickets by usingcloses #123
.Use atomic commits
Code¶
Python¶
We use Black with default settings, enforced by Flake8.
We use the default settings, except for a maximal line-length of 99 characters. If you are using a Black IDE integration, think about adapting its settings.
For code documentation we use the Flake8 Docstrings extension with Google-style formatting enabled (docstring-convention=google
).
ECMAScript and TypeScript¶
We use ESLint as the common Linter. When your code is based on VueJS or Svelte, install the official IDE extensions. These extensions provide additional style checks and auto-formatting options.
API¶
We utilize an API-first approach. APIs are specified using OpenAPI 3. Find the API at api.aura.radio.
All the main aspects are documented within the spec. In some cases you may need some additional documentation in the docs. For example the API: Schedules and conflict resolution document can be found in “Developer Guide -> Misc”.
API-first
At the moment only Engine API is based on API-first. Steering API and Tank API are momentarily generated out of the code base.
Testing¶
When providing new features or refactoring code, please provide test cases. We do not expect 100% test coverage but are aiming for having the most important usage scenarios covered by automated CI/CD test suites.
Auto Deployment¶
For all components, feature branches automatically build Docker containers and push them to the gitlab-registry. To roll out new features, the Compose-File, must be set to the corresponding tag of the feature branch. After the commit, the version will be rolled out automatically.
Documentation¶
The general documentation is located in aura/docs
and hosted at docs.aura.radio. When working on any component, also check if this documentation has to be updated or extended.
Developer Installation¶
For Development the native installation as outlined in the README
of individual repositories recommended.
Docker Compose Deployments
For production we highly recommend to run AURA using Docker and Docker Compose as outlined in the Administration Guide. But also as a developer you can benefit from the ease of an Docker Compose installation. For example when developing some Engine feature, you may want to run AURA Web with Docker Compose while testing.
Prepare your Development Environment¶
It is recommended to clone all projects for example in such folder structure:
~code/aura/aura
~code/aura/steering
~code/aura/dashboard
~code/aura/engine
~code/aura/engine-api
~code/aura/engine-core
...
Order of configuration¶
After that, you need to configure the projects in following order:
Web Projects
Steering - Administration interface for schedules and programme information.
Dashboard - Frontend to manage schedules, program info and audio files.
Tank - Upload, pre-processing and storage of the audio files.
…
Play-out Projects
Engine Core - Playout-engine to deliver the actual radio to the audience.
Engine API - API Server to provide playlogs and information for the studio clock.
Engine - Scheduling and remote control for the playout-engine.
…
Configuring the OpenID Clients¶
Dashboard and Tank authenticate against Steering using OpenID. We use OpenID Connect (OIDC) to implement OpenID.
Check out the OIDC configuration page, on how to get them talk to each other.
Component Documentation¶
For more detailed documentation read the README
files in the individual repositories.
You get an overview of all repositories at code.aura.radio.