Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 755 Bytes

DEVELOP.md

File metadata and controls

33 lines (23 loc) · 755 Bytes

Developer Guide

Help is very much welcome and so are pull requests!

Building

Here is how you can build AudioGridder. Note that building the server is only supported on macOS and Windows.

# Checkout the code
git clone --recurse-submodules https://github.com/apohl79/audiogridder.git
cd audiogridder

# Checkout the dependencies
git clone https://github.com/apohl79/audiogridder-deps.git

# Configure and compile
python3 build.py conf --disable-signing
python3 build.py build

Coding conventions

Please follow the existing coding style (m_ notation for member variables or cammel case etc). Also before submitting a pull request, make sure you are running the code formater.

package/format.sh

Thanks for your contributions!