mirror of
https://git.madhouse-project.org/algernon/iocaine.git
synced 2025-02-10 11:46:18 +01:00
Added a few words about compiling Iocaine, added a docker example with a TOML configuration file (vs the existing environment variable-based example), and collected a mistake describing the shape of `IOCAINE__SOURCES__MARKOV`. These together should largely address #2. Signed-off-by: Gergely Nagy <me@gergo.csillger.hu>
11 lines
230 B
TOML
11 lines
230 B
TOML
# SPDX-FileCopyrightText: 2025 Gergely Nagy
|
|
# SPDX-FileContributor: Gergely Nagy
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
[server]
|
|
bind = "0.0.0.0:42069"
|
|
|
|
[sources]
|
|
words = "/data/wordlist.txt"
|
|
markov = ["/data/training-text.txt"]
|