1
0
Fork 0

Added .gitignore.

This commit is contained in:
Alexander Andreev 2023-02-05 00:49:01 +04:00
parent 1c4af2048b
commit 1702534072
Signed by: Arav
GPG Key ID: 0388CC8FAA51063F
2 changed files with 4 additions and 1 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.vscode
*.pug.go
bin/dwelling-home

View File

@ -21,7 +21,7 @@ var listenAddress *string = flag.String("listen", "/var/run/dwelling-home/sock",
var captchaExpiry *time.Duration = flag.Duration("captcha-expiry", 10*time.Minute, "CAPTCHA expiry (e.g. 5m, 60s)")
var guestbookOwner *string = flag.String("gb-owner", "Admin", "name of a guestbook owner")
var guestbookPageSize *int = flag.Int("gb-pagesz", 60, "size of a guestbook page")
var databasesPath *string = flag.String("db-path", "/var/lib/dwelling-home", "path to a directory where to store DB files")
var databasesPath *string = flag.String("db", "/var/lib/dwelling-home", "path to a directory where to store DB files")
func main() {
flag.Parse()