-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.dhall
29 lines (23 loc) · 930 Bytes
/
config.dhall
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
28
29
-- This is an example configuration file for gitja.
-- It uses the Dhall configuration language: dhall-lang.org
-- This is a folder containing repositories.
let repos = ".."
-- And these are relative paths from 'repos' to those repositories.
let folders =
[ "${repos}/gitja"
]
-- These are the configurable options that are used by gitja.
-- If copying, you may want to replace the relative paths for absolute paths.
let config =
{ repos = folders
, scan = False
, template = "./templates/docs"
, output = "./output"
, host = "http://localhost:8000"
}
-- If `scan` is True, then gitja will look for git repositories in folders
-- nested within those listed in `repos`. Otherwise, the folders in `repos` are
-- assumed to be repositories themselves.
-- Note: The host is available verbatim in templates.
-- Port 8000 is appended here for easier testing with `python -m http.server`.
in config