raw
1# `bile`
2
3a simple self-hosted git server.
4
5its a fork of [thebotlynoob/agit](https://github.com/TheBotlyNoob/agit) (which is a fork of [alexwennerberg/mygit](https://github.com/alexwennerberg/mygit)),
6along with some styling based of [stagit](https://git.codemadness.org/stagit/).
7
8## config
9
10heres an example config showing all the configuration options
11
12```toml
13# the port the server will listen on
14port = 5000
15# Directory to find git repos
16project_root = "./repos"
17# the text shown in a browsers title bar
18site_name = "wayver's git archive"
19# file to check for in the .git directory to decide whether to publicly show a repo
20export_ok = "git-daemon-export-ok"
21# base URL to clone repositories from (without trailing slash)
22clone_base = "https://git.wayver.dev"
23# the number of commits to be shown when paginating the log
24log_per_page = 100
25```
26