repos / git-pr

a self-hosted git collaboration server
git clone https://github.com/picosh/git-pr.git

commit
c28d738
parent
be8c814
author
Andreas Gruhler
date
2024-08-28 18:37:42 -0400 EDT
feat: improve documentation

This improves documentation by stating the admin list needs to be
populated with ssh pubkeys and that the config file repos can be
configured with a default_branch name to show in the help text.
1 files changed,  +3, -1
M git-pr.toml
+3, -1
 1@@ -2,7 +2,8 @@
 2 url = "localhost"
 3 # where we store the sqlite db, this toml file, git repos, and ssh host keys
 4 data_dir = "./data"
 5-# this gives users the ability to submit reviews and other admin permissions
 6+# list of admin ssh pubkeys, authorized to submit review and other admin
 7+# permissions
 8 admins = []
 9 # set datetime format for our clients
10 time_format = "2006-01-02"
11@@ -10,5 +11,6 @@ time_format = "2006-01-02"
12 # add as many repos as you want
13 [[repo]]
14 id = "test"
15+default_branch = "main"
16 clone_addr = "https://github.com/picosh/test.git"
17 desc = "Test repo"