mirror of
https://github.com/syuilo/ai.git
synced 2025-03-25 21:12:56 +00:00
chartEnabled=trueでfont.ttfが配置されていない場合は異常終了する
This commit is contained in:
parent
1a19893f10
commit
211393ff32
2 changed files with 6 additions and 1 deletions
|
@ -49,7 +49,7 @@ Misskey用の日本語Botです。
|
|||
`docker-compose.yml` の `enable_mecab` を `0` にすると、MeCabをインストールしないようにもできます。(メモリが少ない環境など)
|
||||
|
||||
## フォント
|
||||
一部の機能にはフォントが必要です。藍にはフォントは同梱されていないので、ご自身でフォントをインストールディレクトリに`font.ttf`という名前で設置してください。
|
||||
チャート機能にはフォントが必要です。藍にはフォントは同梱されていないので、ご自身でフォントをインストールディレクトリに`font.ttf`という名前で設置してください。
|
||||
|
||||
## 記憶
|
||||
藍は記憶の保持にインメモリデータベースを使用しており、藍のインストールディレクトリに `memory.json` という名前で永続化されます。
|
||||
|
|
5
start.sh
5
start.sh
|
@ -12,4 +12,9 @@ if grep keywordEnabled config.json | grep -q true; then
|
|||
fi
|
||||
fi
|
||||
|
||||
if (grep chartEnabled config.json | grep -q true) && [ ! -f ./font.ttf ]; then
|
||||
echo "You must put font.ttf if chartEnabled is true"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
node ./built
|
||||
|
|
Loading…
Reference in a new issue