23 lines
1.1 KiB
Bash
23 lines
1.1 KiB
Bash
# ── SimpleFIN personal finance ───────────────────────────────────────────────
|
|
#
|
|
# FIRST RUN: paste your Setup Token from https://beta-bridge.simplefin.org
|
|
# (Settings → Connect an app → copy the token)
|
|
## Get your key at: https://console.anthropic.com
|
|
ANTHROPIC_API_KEY=
|
|
|
|
# do not give below details if simplefin is not setup.
|
|
SIMPLEFIN_SETUP_TOKEN=
|
|
#
|
|
# AFTER FIRST RUN: the Access URL is written here automatically.
|
|
# Remove SIMPLEFIN_SETUP_TOKEN once this appears.
|
|
#
|
|
# SIMPLEFIN_ACCESS_URL=https://user:token@beta-bridge.simplefin.org/simplefin
|
|
|
|
# ── Docker / Production ───────────────────────────────────────────────────────
|
|
# Bearer token for all API routes (optional — leave blank to disable)
|
|
API_KEY=
|
|
|
|
# The public origin of your UI, used by Fastify for CORS
|
|
# Set to your domain when behind nginx (e.g. https://screener.example.com)
|
|
CLIENT_ORIGIN=http://localhost
|