From 2173da08e1f34ea8bedaf9f80db5a6c47a538796 Mon Sep 17 00:00:00 2001 From: Akshay Date: Mon, 11 Jul 2022 16:08:46 +0200 Subject: [PATCH] Update deploying custom marketplace page --- .../deploying-marketplace.md | 28 +++++++++++++++---- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/building-with-ocean/deploying-components/deploying-marketplace.md b/building-with-ocean/deploying-components/deploying-marketplace.md index 27c57e75..3eda89ec 100644 --- a/building-with-ocean/deploying-components/deploying-marketplace.md +++ b/building-with-ocean/deploying-components/deploying-marketplace.md @@ -15,13 +15,31 @@ cd my-marketplace Copy the below content into the \`.env\` file. -TODO: explain ALLOWED\_PUBLISHERS and EVENTS\_RPC - {% code title=".env" %} ``` -DB_USERNAME=username -DB_PASSWORD=password -# check the available versions: https://hub.docker.com/repository/docker/oceanprotocol/aquarius +# Update this value if Market should using custom Aquarius +NEXT_PUBLIC_METADATACACHE_URI=https://v4.aquarius.oceanprotocol.com + +#NEXT_PUBLIC_INFURA_PROJECT_ID="xxx" +#NEXT_PUBLIC_MARKET_FEE_ADDRESS="0xxx" +#NEXT_PUBLIC_PUBLISHER_MARKET_ORDER_FEE="1" +#NEXT_PUBLIC_PUBLISHER_MARKET_POOL_SWAP_FEE="1" +#NEXT_PUBLIC_PUBLISHER_MARKET_FIXED_SWAP_FEE="1" +#NEXT_PUBLIC_CONSUME_MARKET_ORDER_FEE="1" +#NEXT_PUBLIC_CONSUME_MARKET_POOL_SWAP_FEE="1" +#NEXT_PUBLIC_CONSUME_MARKET_FIXED_SWAP_FEE="1" + +# +# ADVANCED SETTINGS +# + +# Toggle pricing options presented during price creation +#NEXT_PUBLIC_ALLOW_FIXED_PRICING="true" +#NEXT_PUBLIC_ALLOW_DYNAMIC_PRICING="true" +#NEXT_PUBLIC_ALLOW_FREE_PRICING="true" + +# Privacy Preference Center +#NEXT_PUBLIC_PRIVACY_PREFERENCE_CENTER="true" ``` {% endcode %}