blob: 7f701b063dead4dcc43de06d4d39fd66cd18dec1 (
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
|
.Dd January 12, 2019
.Dt flagconfyg 5 URM
.Sh NAME
.Nm flagconfyg
.Nd This is the simple configuration format for projects in the x repos.
.Sh DESCRIPTION
.Nm
is a simple configuration language for projects in this repository. They are
configured by a file that looks like this:
.nf
// for appsluggr
web web
web-scale 1
fname (
slug.tar.gz
)
.fi
and this gets resolved to the following flag calls:
.nf
-web=web -web-scale=1 -fname=slug.tar.gz
.fi
|