23 lines
813 B
Bash
23 lines
813 B
Bash
# Local-only defaults. Copy this file to .env.local; never commit .env.local.
|
|
BOTSU_DEV_HOST=127.0.0.1
|
|
BOTSU_DEV_PORT=5173
|
|
BOTSU_DEV_ALLOWED_HOSTS=localhost,127.0.0.1
|
|
BOTSU_PRESENCE_PROXY_URL=http://127.0.0.1:8091
|
|
|
|
HOST=127.0.0.1
|
|
PORT=8091
|
|
PRESENCE_ALLOWED_ORIGIN=http://127.0.0.1:5173,http://localhost:5173
|
|
MATRIX_HOMESERVER=botsu.net
|
|
|
|
# Local filesystem stores. Relative paths are resolved by scripts/dev.mjs.
|
|
BOTSU_DRAWING_STORE_ROOT=.data/drawings
|
|
BOTSU_DOCUMENT_STORE_ROOT=.data/documents
|
|
BOTSU_COOKIE_STORE_ROOT=.data/cookies
|
|
BOTSU_TCG_STORE_ROOT=.data/tcg
|
|
BOTSU_MOODBOARD_STORE_ROOT=.data/moodboard
|
|
TCG_CATALOG_INDEX_PATH=.data/tcg/catalog-index.json
|
|
EMOJI_KITCHEN_ROOT=.data/emoji-kitchen/stickers
|
|
|
|
# Optional: point image search to a reachable SearXNG instance.
|
|
# BOTSU_SEARXNG_URL=http://127.0.0.1:8081
|