-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
38 lines (30 loc) · 1008 Bytes
/
.env.example
File metadata and controls
38 lines (30 loc) · 1008 Bytes
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
# Google Books API Configuration
GOOGLE_BOOKS_API_KEY=your_google_books_api_key_here
# Unified Cover Storage Configuration
COVER_STORAGE_PATH=./data/covers
CLEANUP_INTERVAL_MINUTES=120
# Database Configuration
DATABASE_URL=sqlite:///./data/app.db
# CORS Configuration
FRONTEND_URL=http://localhost:5173
# Docker Configuration (for production)
PUID=99
PGID=100
BACKEND_PORT=8000
FRONTEND_PORT=3000
DATA_PATH=./data
# Flexible Deployment Configuration
# Base URL for the application (auto-adds https:// if no protocol specified)
# Examples: mydomain.com, https://example.com, http://192.168.1.100:5173
PUBLIC_BASE_URL=
# Subfolder path for deployment (auto-adds leading slash, removes trailing slash)
# Examples: ko-merge, tools/ko-merge, app
# Leave empty for root deployment
PUBLIC_SUBFOLDER_PATH=
# Enable subfolder deployment mode
# Set to true if deploying to a subfolder, false for root domain
USE_SUBFOLDER=false
# Optional: Proxy Configuration
PROXY_PORT=80
PROXY_SSL_PORT=443
DOMAIN=localhost