-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
30 lines (24 loc) · 1019 Bytes
/
.env.example
File metadata and controls
30 lines (24 loc) · 1019 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
# Copy to .env and fill in real values. Never commit .env.
# --- Branding ---
APP_NAME=Markdown to PDF
APP_URL=https://yourdomain.com
APP_TAGLINE=Free, private, browser-based Markdown → PDF converter. No sign-up, no tracking.
CONTACT_EMAIL=you@yourdomain.com
# --- Monetization ---
# Where the "Buy me a coffee" / donate button links to. Replace with your Stripe/
# Gumroad/BuyMeACoffee/Ko-fi URL, or a checkout link that issues PRO keys.
DONATE_URL=https://www.buymeacoffee.com/yourname
# Comma-separated list of valid Pro license keys. Any user who enters one of
# these in the "★ Pro" dialog will bypass the free-tier limits and watermark.
# Leave empty to disable the Pro tier entirely (hides the upgrade UI).
PRO_KEYS=
# --- Limits ---
MAX_MD_BYTES_FREE=50000
MAX_MD_BYTES_PRO=1000000
RATE_LIMIT_FREE=10
RATE_LIMIT_PRO=200
# Add "Created with ..." footer to free-tier PDFs (removed for Pro users).
WATERMARK_FREE=true
# --- CORS ---
# "*" for anyone, or a comma-separated list of origins.
CORS_ORIGINS=*