From 3351c5e3dd5f05ee7b97b12b248c124308c7c70a Mon Sep 17 00:00:00 2001 From: Karolina Kosiorowska Date: Tue, 10 Dec 2024 11:35:38 +0100 Subject: [PATCH] Moved .env to .env.example We should not commit the .env file, only .env.example should be committed. --- dapp/{.env => .env.example} | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) rename dapp/{.env => .env.example} (54%) diff --git a/dapp/.env b/dapp/.env.example similarity index 54% rename from dapp/.env rename to dapp/.env.example index 977362387..aa19345b5 100644 --- a/dapp/.env +++ b/dapp/.env.example @@ -1,34 +1,32 @@ +# Network VITE_USE_TESTNET=true -# Configuration of sentry.io -VITE_SENTRY_SUPPORT=false -# TODO: Sentry DSN will be added during the application building process when it is ready -VITE_SENTRY_DSN="" - -# TODO: Use a more general source -VITE_ETH_HOSTNAME_HTTP="https://sepolia.infura.io/v3/c80e8ccdcc4c4a809bce4fc165310617" +# Basic UI settings VITE_REFERRAL=0 -# ENDPOINTS -VITE_TBTC_API_ENDPOINT="" +# Endpoints +VITE_ETH_HOSTNAME_HTTP="" VITE_ACRE_API_ENDPOINT="http://localhost:8788/api/v1/" +VITE_TBTC_API_ENDPOINT="http://localhost:8788/tbtc-api/v1/" -# API KEYS +# API keys VITE_GELATO_RELAY_API_KEY="htaJCy_XHj8WsE3w53WBMurfySDtjLP_TrNPPa6IPIc_" # this key should not be used on production -# Get the API key from: https://thegraph.com/studio/apikeys/. VITE_SUBGRAPH_API_KEY="" +# Sentry +VITE_SENTRY_SUPPORT=false +VITE_SENTRY_DSN="" + # Posthog VITE_POSTHOG_API_HOST="https://us.i.posthog.com" VITE_POSTHOG_API_KEY="" # Feature flags -VITE_FEATURE_FLAG_WITHDRAWALS_ENABLED="false" -VITE_FEATURE_FLAG_OKX_WALLET_ENABLED="false" -VITE_FEATURE_FLAG_XVERSE_WALLET_ENABLED="false" +VITE_FEATURE_FLAG_WITHDRAWALS_ENABLED="true" +VITE_FEATURE_FLAG_OKX_WALLET_ENABLED="true" +VITE_FEATURE_FLAG_XVERSE_WALLET_ENABLED="true" VITE_FEATURE_FLAG_ACRE_POINTS_ENABLED="true" VITE_FEATURE_FLAG_TVL_ENABLED="true" VITE_FEATURE_GATING_DAPP_ENABLED="true" VITE_FEATURE_POSTHOG_ENABLED="true" VITE_FEATURE_MOBILE_MODE_ENABLED="true" -