Skip to content

Commit

Permalink
Update default env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
deividaspetraitis committed Nov 27, 2024
1 parent 6c7496f commit 77cadfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions packages/server/src/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ export const TIMESERIES_DATA_URL =
process.env.NEXT_PUBLIC_TIMESERIES_DATA_URL ??
"https://data.stage.osmosis.zone";
export const INDEXER_DATA_URL =
process.env.NEXT_PUBLIC_INDEXER_DATA_URL ??
"https://stage-proxy-data-indexer.osmosis-labs.workers.dev";
process.env.NEXT_PUBLIC_INDEXER_DATA_URL ?? "https://data.stage.osmosis.zone";
export const NUMIA_BASE_URL =
process.env.NEXT_PUBLIC_NUMIA_BASE_URL ??
"https://public-osmosis-api.numia.xyz";
Expand Down
2 changes: 1 addition & 1 deletion packages/web/.env
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ NEXT_PUBLIC_SIDECAR_BASE_URL=https://sqs.osmosis.zone
# NEXT_PUBLIC_WALLETCONNECT_PROJECT_KEY=YOUR_WALLETCONNECT_PROJECT_KEY
# NEXT_PUBLIC_WALLETCONNECT_RELAY_URL=wss://relay.walletconnect.com
# NEXT_PUBLIC_TIMESERIES_DATA_URL=https://data.stage.osmosis.zone
# NEXT_PUBLIC_INDEXER_DATA_URL=https://stage-proxy-data-indexer.osmosis-labs.workers.dev
# NEXT_PUBLIC_INDEXER_DATA_URL=https://data.stage.osmosis.zone

# Twitter api config, it's only used on server
TWITTER_API_URL=https://api.twitter.com/
Expand Down

0 comments on commit 77cadfd

Please sign in to comment.