-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
57 lines (46 loc) · 1.88 KB
/
.env.example
File metadata and controls
57 lines (46 loc) · 1.88 KB
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
# ==========================================
# General Application Settings
# ==========================================
VERSION=0.5
# Hardcoded administrator credentials.
# Manual passwords must be at least 8 chars long and include
# 1 letter, 1 digit, and 1 special character.
# If left empty, a secure random string is generated on startup.
ADMIN_USERNAME=admin
ADMIN_PASSWORD=
# ==========================================
# Logging & Storage
# ==========================================
# Verbosity levels: DEBUG, INFO, WARNING, ERROR
LOGGER_LEVEL=INFO
LOGGER_PATH=data/logs
# SQLite3 database file path.
DATABASE_PATH=data/Android-SMS-API.db
# Enable automated database migrations.
# Set to 'True' to apply schema updates at startup.
MIGRATE_DATABASE=False
# Day of the month (1-31) that starts each billing cycle for message limits.
# Messages are counted from the most recent occurrence of this day.
# Set to 0 to count all messages (no billing cycle).
PLAN_RESET_DAY_OF_MONTH=0
# ==========================================
# ADB (Android Debug Bridge) Configuration
# ==========================================
# Enable the QR code pairing endpoint at program startup (if no devices connected)
# Note: this requires to start the container with access to the host network (flag `--net=host`)
ADB_QR_DEVICE_PAIRING=True
# Enable the endpoint allowing admins to run raw ADB shell commands.
ADB_SHELL_EXECUTION_ROUTE_ENABLED=True
# Attempt to auto-connect to a specific device on startup.
ADB_AUTO_CONNECT=False
# Specific device identifier to connect to.
# Required if ADB_AUTO_CONNECT is set to True.
ADB_DEFAULT_DEVICE=
# ==========================================
# JWT Security
# ==========================================
JWT_ALGORITHM=HS256
JWT_ACCESS_TOKEN_EXPIRE_MINUTES=60
# Secret key for signing tokens.
# If left empty, a secure random string is generated on startup.
JWT_SECRET=<RANDOM_SECURE_STRING>