From 70173bf2fb5ec0c711040b2ce8d0e4ddbab3e79f Mon Sep 17 00:00:00 2001 From: Nelito Junior Date: Mon, 11 Nov 2024 12:17:12 -0300 Subject: [PATCH] ci: update .env.example with local configuration settings for development --- e2e-tests/runner/.env.example | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/e2e-tests/runner/.env.example b/e2e-tests/runner/.env.example index c32d53c4..29b4ef3d 100644 --- a/e2e-tests/runner/.env.example +++ b/e2e-tests/runner/.env.example @@ -1,5 +1,18 @@ -REACT_APP_PORT= -REACT_NEXT_PORT= -VITE_FUEL_PROVIDER_URL="https://testnet.fuel.network/v1/graphql" -VITE_WALLET_SECRET= # leave it empty to skip seed wallet -VITE_MASTER_WALLET_MNEMONIC= \ No newline at end of file +# URLs for the provider +VITE_FUEL_PROVIDER_URL="http://localhost:4000/v1/graphql" +NEXT_PUBLIC_PROVIDER_URL="http://localhost:4000/v1/graphql" + +# Project and chain configuration +NEXT_PUBLIC_WC_PROJECT_ID="your_wc_project_id" +NEXT_PUBLIC_CHAIN_ID_NAME="testnet" +VITE_APP_WC_PROJECT_ID="your_wc_project_id" +VITE_CHAIN_ID_NAME="local" + +# Wallet configuration +VITE_WALLET_SECRET="your_wallet_secret" +VITE_MASTER_WALLET_MNEMONIC="your_wallet_mnemonic" + +# Port settings +REACT_APP_PORT=5173 +REACT_NEXT_PORT=3002 +PORT=5173 \ No newline at end of file