Echo Writes Code

gitten.example.toml

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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# ############################################################# #
# Parameters controlling how your Git repositories are accessed #
# ############################################################# #

[git]

# The path to your Git repositories; must be readable by the user that Gitten runs under.
#
# Default: unset (required parameter)
root = "/path/to/your/git/directory"

# ######################################################### #
# Parameters controlling how Gitten connects to the network #
# ######################################################### #

[network]

# The network address Gitten will bind to. Use the same setting as you configured in your reverse
# proxy.
#
# Default: "127.0.0.1"
host = "127.0.0.1"

# The network port Gitten will bind to. Use the same setting as you configured in your reverse
# proxy.
#
# Default: 8080
port = 8080

# ################################################### #
# Parameters affecting how Gitten generates web pages #
# ################################################### #

[site]

# The name that will appear in the title bar and browser tabs.
#
# Default: "Gitten"
name = "Gitten"

# The path to the site root. If you have mounted Gitten under a subfolder, set this to that
# subfolder.
# For example, if your main site is at https://example.com/, and you want Gitten to be at
# https://example.com/gitten, set this parameter to "/gitten/".
#
# Default: "/"
root = "/"