Skip to content

Commit

Permalink
Retain backwards compatibility in env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
2opremio committed Dec 9, 2024
1 parent e07340f commit fd563aa
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions start
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,14 @@ export PGPORT=5432
: "${ENABLE_LOGS:=false}"
: "${ENABLE_CORE:=false}"
: "${ENABLE_HORIZON:=false}"
: "${ENABLE_RPC:=false}"
# TODO: Remove once the Soroban RPC name is fully deprecated
: "${ENABLE_SOROBAN_RPC:=false}"
: "${ENABLE_RPC:=$ENABLE_SOROBAN_RPC}"
: "${ENABLE_SOROBAN_DIAGNOSTIC_EVENTS:=false}"
: "${DISABLE_SOROBAN_DIAGNOSTIC_EVENTS:=false}"
: "${ENABLE_RPC_ADMIN_ENDPOINT:=false}"
# TODO: Remove once the Soroban RPC name is fully deprecated
: "${ENABLE_SOROBAN_RPC_ADMIN_ENDPOINT:=false}"
: "${ENABLE_RPC_ADMIN_ENDPOINT:=$ENABLE_SOROBAN_RPC_ADMIN_ENDPOINT}"
: "${ENABLE_CORE_MANUAL_CLOSE:=false}"
: "${LIMITS:=testnet}"

Expand Down

0 comments on commit fd563aa

Please sign in to comment.