frierena personal git archive

frieren

a self-hosted git server in one binary — everyone reads, only the owner writes

chore: initial commit

9638e84306232ca3793e9d67cb3c17384b688f79

justin06lee · Aug 18, 2026, 10:03 PM (5h ago)

.gitignore | 17 +++++++++++++++++
 go.mod     |  3 +++
 2 files changed, 20 insertions(+)
.gitignore+170
@@ -0,0 +1,17 @@
1+# build artifacts
2+/dist/
3+/frieren
4+
5+# local test repositories
6+/repos/
7+
8+# OS junk
9+.DS_Store
10+
11+# editor
12+.idea/
13+.vscode/
14+
15+# secrets
16+.env
17+*.token
go.mod+30
@@ -0,0 +1,3 @@
1+module github.com/justin06lee/frieren
2+
3+go 1.26.6
04