19 lines
773 B
Plaintext
19 lines
773 B
Plaintext
APP_HOST="localhost:8080"
|
|
APP_NAME="BuysForLife"
|
|
SQLITE_DB="db-dev.sqlite"
|
|
# SMTP for login, order, and admin notifications
|
|
SMTP_HOST="smtp.example.com" # SMTP uses TLS
|
|
SMTP_USER="user@example.com"
|
|
SMTP_PASS="your-super-secure-pass"
|
|
SMTP_FROM="noreply@example.com"
|
|
# Bitcoin Lightning Netowrk Address LNURL
|
|
# Used for recieving payment at checkout
|
|
# !! Choose your LN_SERVICE carefully!!
|
|
# NOTE: The LN_SERVICE must support LUD-21 Payment Verification
|
|
LN_ADDRESS="your@node.win"
|
|
# maps.co for GeoCoder (postal address verification)
|
|
# Get your free API key: https://geocode.maps.co
|
|
GEOCODE_MAPS_CO_API_KEY="your-api-key-from-geocode.maps.co"
|
|
# Plausible for privacy-respecting page analytics
|
|
# https://github.com/plausible/analytics
|
|
PLAUSIBLE_HOST="https://plausible.io/" |