Fix env variables in instructions

This commit is contained in:
Prathamesh Musale 2023-12-06 10:36:49 +05:30
parent 5a1f986886
commit b61036f8e1
2 changed files with 8 additions and 3 deletions

View File

@ -50,9 +50,11 @@ laconic-so --stack proxy-server build-containers
ENABLE_PROXY= ENABLE_PROXY=
# Upstream endpoint # Upstream endpoint
# (Eg. https://api.example.org)
CERC_PROXY_UPSTREAM= CERC_PROXY_UPSTREAM=
# Origin header to be used (Optional) # Origin header to be used (Optional)
# (Eg. https://app.example.org)
CERC_PROXY_ORIGIN_HEADER= CERC_PROXY_ORIGIN_HEADER=
``` ```

View File

@ -41,7 +41,7 @@ network:
ports: ports:
urbit-fake-ship: urbit-fake-ship:
- '8080:80' - '8080:80'
uniswap-gql-proxy: proxy-server:
- '4000:4000' - '4000:4000'
ipfs-glob-host: ipfs-glob-host:
- '8081:8080' - '8081:8080'
@ -74,6 +74,7 @@ Inside the deployment directory, open the file `config.env` and set the followin
# Uniswap API GQL Endpoint # Uniswap API GQL Endpoint
# Set this to GQL proxy server endpoint for uniswap app # Set this to GQL proxy server endpoint for uniswap app
# (Eg. http://localhost:4000/v1/graphql) # (Eg. http://localhost:4000/v1/graphql)
# (Eg. https://abc.xyz.com/v1/graphql)
CERC_UNISWAP_GQL= CERC_UNISWAP_GQL=
# Optional # Optional
@ -86,10 +87,12 @@ Inside the deployment directory, open the file `config.env` and set the followin
# Used only if proxy is enabled # Used only if proxy is enabled
# Upstream API URL # Upstream API URL
PROXY_UPSTREAM=https://api.uniswap.org # (Eg. https://api.example.org)
CERC_PROXY_UPSTREAM=https://api.uniswap.org
# Origin header to be used in the proxy # Origin header to be used in the proxy
PROXY_ORIGIN_HEADER=https://app.uniswap.org # (Eg. https://app.example.org)
CERC_PROXY_ORIGIN_HEADER=https://app.uniswap.org
# IPFS configuration # IPFS configuration