GitRoot

Craft your forge, Build your project, Grow your community freely
 1// SPDX-FileCopyrightText: 2026 Romain Maneschi <romain@gitroot.dev>
 2//
 3// SPDX-License-Identifier: MIT
 4
 5
 6@json
 7export class ForgeConf {
 8  constructor(
 9    public domain: string,
10    public externalSshAddr: string,
11    public externalHttpAddr: string,
12    public rootRepositoryName: string,
13  ) {}
14}
15