33 lines
1.0 KiB
Bash
33 lines
1.0 KiB
Bash
# dashboard-server .env template (Phase 4)
|
|
#
|
|
# The merged dashboard-server reads /var/www/inventory/.env FIRST (provides
|
|
# JWT_SECRET, DB_*, REDIS_*) and then layers this .env on top for vendor keys.
|
|
# Shared/security-critical vars stay in /var/www/inventory/.env so they aren't
|
|
# duplicated; vendor keys live here.
|
|
#
|
|
# Copy to .env and populate. Do NOT commit the populated file.
|
|
|
|
# Port the merged service listens on
|
|
DASHBOARD_PORT=3015
|
|
|
|
# Klaviyo (replaces klaviyo-server/.env)
|
|
KLAVIYO_API_KEY=
|
|
KLAVIYO_API_REVISION=2024-02-15
|
|
KLAVIYO_API_URL=https://a.klaviyo.com/api
|
|
|
|
# Meta / Facebook Ads (replaces meta-server/.env)
|
|
META_ACCESS_TOKEN=
|
|
META_AD_ACCOUNT_ID=
|
|
META_API_VERSION=v21.0
|
|
|
|
# Google Analytics (replaces google-server/.env)
|
|
GA_PROPERTY_ID=
|
|
GOOGLE_APPLICATION_CREDENTIALS_JSON=
|
|
|
|
# Typeform (replaces typeform-server/.env)
|
|
TYPEFORM_ACCESS_TOKEN=
|
|
|
|
# Vendors share the inventory REDIS_URL or REDIS_HOST/PORT/USERNAME/PASSWORD
|
|
# from the parent .env. Do NOT redeclare here unless you need a vendor-only
|
|
# override (rare; would need to fork shared/db/redis.js too).
|