Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -181,3 +181,30 @@ LOCAL_STORAGE_DIR=/tmp/shelterflex-dev
# S3_SECRET_ACCESS_KEY=
# S3_ENDPOINT= # For MinIO: http://localhost:9000
# S3_FORCE_PATH_STYLE=true # Set to true for MinIO

# ---------------------------------------------------------------------------
# E-Signature provider (lease agreements)
# ---------------------------------------------------------------------------
# [OPTIONAL] Provider to use for lease e-signatures.
# stub – in-memory provider, no external calls (default).
# docuseal – real DocuSeal-backed provider (self-hosted or cloud).
ESIGN_PROVIDER=stub

# [REQUIRED when ESIGN_PROVIDER=docuseal] DocuSeal base URL.
# For self-hosted: http://localhost:3000
# For DocuSeal cloud: https://api.docuseal.com
DOCUSEAL_API_URL=http://localhost:3000

# [REQUIRED when ESIGN_PROVIDER=docuseal] DocuSeal API auth token.
# Generate in DocuSeal dashboard → Settings → API.
DOCUSEAL_API_KEY=

# [REQUIRED when ESIGN_PROVIDER=docuseal] Shared secret for verifying inbound
# webhook signatures (HMAC-SHA-256). Set this in DocuSeal webhook settings
# and mirror the value here. Generate with:
# node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"
DOCUSEAL_WEBHOOK_SECRET=

# Feature flag — lease agreement generation + e-signature workflow.
# Set to true to enable the lease signing endpoints.
FEATURE_FLAG_LEASE_AGREEMENTS_ENABLED=false
Loading
Loading