Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ HASURA_PORT=8080
# packages/web
NEXT_TELEMETRY_DISABLED=1
NEXT_PUBLIC_INFURA_ID=781d8466252d47508e177b8637b1c2fd
NEXT_PUBLIC_GRAPHQL_URL=http://localhost:8080/v1/graphql # use https://api.metagame.wtf/v1/graphql for prod backend
NEXT_PUBLIC_GRAPHQL_URL=http://localhost:8080/v1/graphql # use https://api-staging.metagame.wtf/v1/graphql for staging backend
NEXT_BRIGHTID_APP_URL=https://app.brightid.org
NEXT_BRIGHTID_NODE_URL=http:%2f%2fnode.brightid.org
NEXT_PUBLIC_VERCEL_URL=http://localhost:3000
Expand Down
4 changes: 2 additions & 2 deletions guides/FRONTEND.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ yarn

### Connecting to remote servers

To connect to production servers, you'll need to create a file `.env.local` under `packages/web` and write this inside:
To connect to staging servers, you'll need to create a file `.env.local` under `packages/web` and write this inside:

```
NEXT_PUBLIC_GRAPHQL_URL=https://api.metagame.wtf/v1/graphql
NEXT_PUBLIC_GRAPHQL_URL=https://api-staging.metagame.wtf/v1/graphql
```

### Connecting to local server
Expand Down