diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | man/forge.1 | 35 |
2 files changed, 36 insertions, 1 deletions
@@ -4,7 +4,7 @@ .PHONY: clean version.go man source.tar.gz CFLAGS = -Wall -Wextra -Werror -pedantic -std=c99 -D_GNU_SOURCE -MAN_PAGES = forge.5 hookc.1 +MAN_PAGES = forge.5 hookc.1 forge.1 forge: source.tar.gz version.go hookc/*.c hookc/hookc man # TODO go build . diff --git a/man/forge.1 b/man/forge.1 new file mode 100644 index 0000000..dd1960f --- /dev/null +++ b/man/forge.1 @@ -0,0 +1,35 @@ +.\" SPDX-License-Identifier: AGPL-3.0-only +.\" SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org> +.Dd March 30, 2025 +.Dt FORGE 1 +.Os Lindenii Forge +.Sh NAME +.Nm forge +.Nd Lindenii Forge server daemon +.Sh SYNOPSIS +.Nm +.Op Fl config Ar path +.Sh DESCRIPTION +.Nm +is the main server daemon for Lindenii Forge. +.Pp +All configuration is loaded from a configuration file; see +.Xr forge 5 . +.Pp +All listeners are long-lived; the process runs until interrupted. +.Sh OPTIONS +.Bl -tag -width Ds +.It Fl config Ar path +The path to the configuration file. Defaults to +.Pa /etc/lindenii/forge.scfg . +.El +.Sh FILES +.Bl -tag -width Ds +.It Pa /etc/lindenii/forge.scfg +Default configuration file. +.El +.Sh SEE ALSO +.Xr forge 5 +.Sh AUTHORS +.An Runxi Yu Aq Mt https://runxiyu.org +.An Test_User Aq Mt hax@runxiyu.org |