/wuhu-plugin-json-export

Super minimal Wuhu plugin for exporting compo data into JSON

Primary LanguagePHPMIT LicenseMIT

wuhu-plugin-json-export

Super simple wuhu plugin for exporting compo data into JSON. Intended for use with jamviewer and our normalization script.

Installation

Just clone this repository into the Wuhu plugins directory.

Usage

Enable the plugin, then a "JSON Export" option should appear in the Wuhu admin sidebar. The data is emitted in the format:

[
    {
        "directory_name": string,
        "display_name": string,
        "entries": [
            {
                "title": string,
                "author": string,
                "comment": string,
                "orgacomment": string,
                "filename": string,
                "playingorder": number
            },
            ...
        ]
    },
    ...
]