wayver's git archive


a simple self-hosted git server
git clone https://git.wayver.dev/bile

README.md@1ba94a06f75f7b886e5917f1496851bc03346d5e

raw
Date Commit Message Author Files + -
2026-02-17 21:50 update README with config sample wayverd 2 19 0
...

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