-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
39 lines (35 loc) · 1 KB
/
.env.example
File metadata and controls
39 lines (35 loc) · 1 KB
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
39
# --- Local Development (Docker MSSQL) ---
# Copy this file to .env and fill in the values
# Start MSSQL: docker compose up -d
# Create DB once: docker exec lds-mssql /opt/mssql-tools18/bin/sqlcmd -S localhost -U sa -P "YourStrong!Passw0rd" -C -Q "CREATE DATABASE LightningSpace"
# For local dev, only the settings below are required:
ENVIRONMENT=loc
PORT=3000
SQL_HOST=localhost
SQL_PORT=1433
SQL_USERNAME=sa
SQL_PASSWORD=YourStrong!Passw0rd
SQL_DB=LightningSpace
SQL_SYNCHRONIZE=true
SQL_MIGRATE=false
JWT_SECRET=
DISABLED_PROCESSES=*
# Debug endpoint (scripts/db-debug.sh, scripts/log-debug.sh)
DEBUG_ADDRESS=
DEBUG_SIGNATURE=
DEBUG_API_URL=
# Azure Application Insights (for log-debug.sh)
AZURE_APP_INSIGHTS_APP_ID=
AZURE_APP_INSIGHTS_API_KEY=
# Boltz PostgreSQL (for swap statistics)
BOLTZ_PG_HOST=
BOLTZ_PG_PORT=5432
BOLTZ_PG_DATABASE=
BOLTZ_PG_USER=
BOLTZ_PG_PASSWORD=
# Ponder-Claim PostgreSQL (for claim transaction hashes)
PONDER_PG_HOST=
PONDER_PG_PORT=5432
PONDER_PG_DATABASE=
PONDER_PG_USER=
PONDER_PG_PASSWORD=