-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (27 loc) · 1.77 KB
/
.env.example
File metadata and controls
35 lines (27 loc) · 1.77 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
# Library GUI Configuration Example
# Copy this file to .env and update with your values
# .env is gitignored and should NOT be committed
# ─── API Configuration ───────────────────────────────────────────────────────
API_BASE_URL=Your API URL here
# For production: https://your-domain.com/v1/
# For remote: http://192.168.1.100:8000/v1/
API_TIMEOUT=10
# Increase if your server is slow or network is unreliable
API_MAX_CONNECTIONS=20
# Adjust based on your system resources
# ─── GitHub Configuration ───────────────────────────────────────────────────
GITHUB_USER=YourGitHubUsername
GITHUB_REPO=YourGitHubRepo
# Used for checking updates. Set to your actual GitHub username and repo name
# ─── Security Configuration ─────────────────────────────────────────────────
KEYRING_SERVICE_NAME=MyLibraryApp
DEVICE_ID_FILE=.library_app_device_id
# ─── Application Configuration ──────────────────────────────────────────────
LOG_LEVEL=INFO
# Use DEBUG for development, INFO for production
APP_NAME=YourAppName
APP_ORG=YourAppOrg
# Used for storing UI preferences. Set to your app's name and organization
# ─── Debug Mode ─────────────────────────────────────────────────────────────
DEBUG=false
# Set to true only during development for additional logging