Skip to content

Commit

Permalink
ci: update .env.example with local configuration settings for develop…
Browse files Browse the repository at this point in the history
…ment
  • Loading branch information
nelitow committed Nov 11, 2024
1 parent c3acbbc commit 70173bf
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions e2e-tests/runner/.env.example
Original file line number Diff line number Diff line change
@@ -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=
# 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

0 comments on commit 70173bf

Please sign in to comment.