blob: c2382f7a834db60644f6b0ad7742d992f27b8099 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// SPDX-License-Identifier: CC0-1.0
// Hydrilla development config file.
//
// Copyright (C) 2021, 2022 Wojtek Kosior
//
// Available under the terms of Creative Commons Zero v1.0 Universal.
// this config is meant to be used in development environment;
// unlike config.json, it shall not be included in distribution
{
// Relative paths now get resolved from config's containing direcotry.
"malcontent_dir": "./sample_malcontent",
// Hydrilla will display this link to users as a place where they can
// obtain sources for its software. This config option is meant to ease
// compliance with the AGPL.
"hydrilla_project_url": "https://hydrillabugs.koszko.org/projects/hydrilla/wiki",
// Make Hydrilla error out on any warning
"werror": true
// With the below we can make hydrilla look for missing content items in
// another instance instead of just erroring/warning.
// TODO: feature not implemented
// ,"hydrilla_parent": "https://api.hydrilla.koszko.org/1.0/"
}
|