-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
75 lines (49 loc) · 1.84 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# ===============
# === General ===
# ===============
# Logging level (optional, default 'info')
#LOG_LEVEL=info
# Port to listen HTTP requests on (optional, default '5007')
#PORT=5007
# Use polling mode (optional, default false')
#USE_POLLING=false
# Base URL (required unless USE_POLLING is 'true', https only)
BASE_URL=https://<YOUR_PUBLIC_DOMAIN>
# Bot token (required)
BOT_TOKEN=<YOUR_TELEGRAM_BOT_TOKEN>
# Bot verbosity level (optional, could be 'silent', 'minimal', 'normal', 'verbose', default 'normal')
#BOT_VERBOSITY=normal
# IDs of users that are able to use the bot (required, comma separated)
USER_IDS=999999999,999999999
# API key for /input endpoint to send messages outside of Telegram (optional, 16 symbols min)
#INPUT_API_KEY=
# ===============
# === OpenAI ====
# ===============
# API key (required)
OPENAI_API_KEY=<YOUR_OPENAI_API_KEY>
# API endpoint (optional, default 'https://api.openai.com/v1')
#OPENAI_API_ENDPOINT=http://localhost/v1
# Model to use (optional, default 'gpt-4o')
#OPENAI_MODEL=gpt-4o
# Temperature (optional, default '0.2')
#OPENAI_TEMPERATURE=0.2
# ===============
# === Actual ====
# ===============
# Password (required)
ACTUAL_PASSWORD=<YOUR_PASSWORD>
# API endpoint (required)
ACTUAL_API_ENDPOINT=http://localhost:5006
# Sync ID (required, from Settings > Show advanced settings > Sync ID)
ACTUAL_SYNC_ID=<YOUR_SYNC_ID>
# Currency (optional, ISO 4217 code, default EUR, all other currencies will be converted to this one)
#ACTUAL_CURRENCY=EUR
# Default category (optional, default 'Food')
#ACTUAL_DEFAULT_CATEGORY=Food
# Default account (optional, default 'Cash')
#ACTUAL_DEFAULT_ACCOUNT=Cash
# Data directory (optional, default '/app/data', '/app' is the application root inside the container)
#ACTUAL_DATA_DIR=/app/my-data
# Note prefix for transactions (optional, default '🤖')
#ACTUAL_NOTE_PREFIX=[TG]