24 lines
645 B
TOML
24 lines
645 B
TOML
# Local development configuration for `just dev`.
|
|||
|
|
# Not shipped with the gem; safe to edit. Keep real admin hashes out of Git.
|
||
|
|
|
||
|
|
[server]
|
||
|
|
host = "127.0.0.1"
|
||
|
|
port = 9090
|
||
|
|
|
||
|
|
content_dir = "./posts"
|
||
|
|
users_file = "./users.toml"
|
||
|
|
|
||
|
|
[site]
|
||
|
|
title = "volumen (dev)"
|
||
|
|
description = "Local development instance of volumen."
|
||
|
|
base_url = "http://localhost:9090"
|
||
|
|
language = "cs"
|
||
|
|
author = "Petr Balvín"
|
||
|
|
|
||
|
|
[admin]
|
||
|
|
# Dev credentials: password is "admin". Replace before any real use
|
||
|
|
# (generate with `volumen hash-password`).
|
||
|
|
password_hash = "scrypt$16384$8$1$I7XEC8EpyfaptaPxmBQSUg==$gK7TRZAJnYmOSfKJ7xg+cOaYeBV4r5jlqcoL5+jNlSs="
|
||
|
|
session_key = ""
|
||
|
|
session_ttl = 86400
|