From 00ed57f119bc80030bf377a7ef9ff35f44b79e6d Mon Sep 17 00:00:00 2001 From: Jamie Hewitt Date: Wed, 21 Aug 2024 16:57:35 +0100 Subject: [PATCH 01/10] Adding build:start command to be used by pm2 --- README.md | 2 +- dist/dashboard/404.html | 2 +- .../_buildManifest.js | 0 .../_ssgManifest.js | 0 dist/dashboard/index.html | 2 +- package.json | 1 + scripts/dashboard.hash | 2 +- 7 files changed, 5 insertions(+), 4 deletions(-) rename dist/dashboard/_next/static/{iHQ8Y5oSAlp7cdhLJAoyy => q4r9Nh54ljO1bGCWloGnX}/_buildManifest.js (100%) rename dist/dashboard/_next/static/{iHQ8Y5oSAlp7cdhLJAoyy => q4r9Nh54ljO1bGCWloGnX}/_ssgManifest.js (100%) diff --git a/README.md b/README.md index 0a5d23d67..a64c5449d 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ PM2 is a process manager that makes it easy to manage and monitor your Node.js a 2. Start the Ocean Node with PM2 ```bash - pm2 start npm --name "ocean-node" -- run start + pm2 start npm --name "ocean-node" -- run build:start ``` 3. Monitor and Manage the Node diff --git a/dist/dashboard/404.html b/dist/dashboard/404.html index 7da9d78cb..ad1277239 100644 --- a/dist/dashboard/404.html +++ b/dist/dashboard/404.html @@ -1 +1 @@ -404: This page could not be found

404

This page could not be found.

\ No newline at end of file +404: This page could not be found

404

This page could not be found.

\ No newline at end of file diff --git a/dist/dashboard/_next/static/iHQ8Y5oSAlp7cdhLJAoyy/_buildManifest.js b/dist/dashboard/_next/static/q4r9Nh54ljO1bGCWloGnX/_buildManifest.js similarity index 100% rename from dist/dashboard/_next/static/iHQ8Y5oSAlp7cdhLJAoyy/_buildManifest.js rename to dist/dashboard/_next/static/q4r9Nh54ljO1bGCWloGnX/_buildManifest.js diff --git a/dist/dashboard/_next/static/iHQ8Y5oSAlp7cdhLJAoyy/_ssgManifest.js b/dist/dashboard/_next/static/q4r9Nh54ljO1bGCWloGnX/_ssgManifest.js similarity index 100% rename from dist/dashboard/_next/static/iHQ8Y5oSAlp7cdhLJAoyy/_ssgManifest.js rename to dist/dashboard/_next/static/q4r9Nh54ljO1bGCWloGnX/_ssgManifest.js diff --git a/dist/dashboard/index.html b/dist/dashboard/index.html index 94245c612..50bbf6f40 100644 --- a/dist/dashboard/index.html +++ b/dist/dashboard/index.html @@ -1 +1 @@ -Ocean nodes
Ocean Node Logo
ADMIN ACTIONS
\ No newline at end of file +Ocean nodes
Ocean Node Logo
ADMIN ACTIONS
\ No newline at end of file diff --git a/package.json b/package.json index 2f1d44455..7d33751d6 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,7 @@ "build": "npm run clean && npm run check-changes && npm run build:tsc", "build:no-dashboard": "npm run clean && npm run build:tsc", "build:tsc": "tsc --sourceMap", + "build:start": "npm run build && npm run start", "build-tests:tsc": "tsc --sourceMap --sourceRoot ./src/test && cp ./src/test/.env.test ./dist/test", "build:dashboard": "cd dashboard && npm install --maxsockets 1 && NODE_ENV=production npx next build", "check-changes": "node scripts/dashboardChanges.js", diff --git a/scripts/dashboard.hash b/scripts/dashboard.hash index 3d03311d7..f2e61f2d7 100644 --- a/scripts/dashboard.hash +++ b/scripts/dashboard.hash @@ -1 +1 @@ -8447f7fca994fedf80cf9ba8b1209020b9048ada4b437e6dd5703e5161682642 \ No newline at end of file +cbdbef3340d67b46bdddd97e10e5d90557acbe114fc7b4e01489bd7b428d3d6f \ No newline at end of file From 6af80420262f6cd907d157da9132eee62341748a Mon Sep 17 00:00:00 2001 From: Jamie Hewitt Date: Wed, 21 Aug 2024 17:01:57 +0100 Subject: [PATCH 02/10] Adding instructions on the env setup with PM2 --- README.md | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a64c5449d..99fbcca74 100644 --- a/README.md +++ b/README.md @@ -35,13 +35,30 @@ PM2 is a process manager that makes it easy to manage and monitor your Node.js a npm install -g pm2 ``` -2. Start the Ocean Node with PM2 +2. Configure Environment Variables + +Either run the helper script: + +```bash +./src/helpers/scripts/setupNodeEnv.sh +source .env +``` + +Or setup the environmental variables manually: + +```bash +export PRIVATE_KEY="0x_your_private_key_here" +``` + +The `PRIVATE_KEY` is the only mandatory environmental variable, you must include the `0x` at the front of your private key. Additional configurations can be set as needed. For all available configurations, refer to the [Environment Variables](docs/env.md) documentation. + +3. Build & Start the Ocean Node with PM2 ```bash pm2 start npm --name "ocean-node" -- run build:start ``` -3. Monitor and Manage the Node +4. Monitor and Manage the Node You can use the following PM2 commands to manage your Ocean Node: From 808cbdfc39766236b8d0353f710b2050696cd210 Mon Sep 17 00:00:00 2001 From: Jamie Hewitt Date: Wed, 21 Aug 2024 17:16:42 +0100 Subject: [PATCH 03/10] Adding step to PM2 instructions for setting up the environmental variables --- README.md | 13 ++++++------- package.json | 3 ++- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 99fbcca74..33da8ba5a 100644 --- a/README.md +++ b/README.md @@ -35,16 +35,15 @@ PM2 is a process manager that makes it easy to manage and monitor your Node.js a npm install -g pm2 ``` -2. Configure Environment Variables +2. Setup the environmental variables -Either run the helper script: +Either use the script: -```bash -./src/helpers/scripts/setupNodeEnv.sh -source .env +``` +npm run envSetup ``` -Or setup the environmental variables manually: +or setup the required environment variables manually: ```bash export PRIVATE_KEY="0x_your_private_key_here" @@ -52,7 +51,7 @@ export PRIVATE_KEY="0x_your_private_key_here" The `PRIVATE_KEY` is the only mandatory environmental variable, you must include the `0x` at the front of your private key. Additional configurations can be set as needed. For all available configurations, refer to the [Environment Variables](docs/env.md) documentation. -3. Build & Start the Ocean Node with PM2 +3. Quick start the Ocean Node with PM2 ```bash pm2 start npm --name "ocean-node" -- run build:start diff --git a/package.json b/package.json index 7d33751d6..72ce358c2 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,8 @@ "build": "npm run clean && npm run check-changes && npm run build:tsc", "build:no-dashboard": "npm run clean && npm run build:tsc", "build:tsc": "tsc --sourceMap", - "build:start": "npm run build && npm run start", + "quick:start": "npm run build && setupEnv && npm run start", + "setupEnv": "bash -c './src/helpers/scripts/setupNodeEnv.sh && source .env'", "build-tests:tsc": "tsc --sourceMap --sourceRoot ./src/test && cp ./src/test/.env.test ./dist/test", "build:dashboard": "cd dashboard && npm install --maxsockets 1 && NODE_ENV=production npx next build", "check-changes": "node scripts/dashboardChanges.js", From 4f4cc5a3bbf209e90b5bb4dc49ad0b6084b73e16 Mon Sep 17 00:00:00 2001 From: Jamie Hewitt Date: Wed, 21 Aug 2024 17:25:53 +0100 Subject: [PATCH 04/10] Removing dashboard file changes from PR --- README.md | 2 +- dist/dashboard/404.html | 2 +- .../_buildManifest.js | 0 .../_ssgManifest.js | 0 dist/dashboard/index.html | 2 +- 5 files changed, 3 insertions(+), 3 deletions(-) rename dist/dashboard/_next/static/{q4r9Nh54ljO1bGCWloGnX => iHQ8Y5oSAlp7cdhLJAoyy}/_buildManifest.js (100%) rename dist/dashboard/_next/static/{q4r9Nh54ljO1bGCWloGnX => iHQ8Y5oSAlp7cdhLJAoyy}/_ssgManifest.js (100%) diff --git a/README.md b/README.md index 33da8ba5a..8c1b27731 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ The `PRIVATE_KEY` is the only mandatory environmental variable, you must include 3. Quick start the Ocean Node with PM2 ```bash - pm2 start npm --name "ocean-node" -- run build:start + pm2 start npm --name "ocean-node" -- run start ``` 4. Monitor and Manage the Node diff --git a/dist/dashboard/404.html b/dist/dashboard/404.html index ad1277239..7da9d78cb 100644 --- a/dist/dashboard/404.html +++ b/dist/dashboard/404.html @@ -1 +1 @@ -404: This page could not be found

404

This page could not be found.

\ No newline at end of file +404: This page could not be found

404

This page could not be found.

\ No newline at end of file diff --git a/dist/dashboard/_next/static/q4r9Nh54ljO1bGCWloGnX/_buildManifest.js b/dist/dashboard/_next/static/iHQ8Y5oSAlp7cdhLJAoyy/_buildManifest.js similarity index 100% rename from dist/dashboard/_next/static/q4r9Nh54ljO1bGCWloGnX/_buildManifest.js rename to dist/dashboard/_next/static/iHQ8Y5oSAlp7cdhLJAoyy/_buildManifest.js diff --git a/dist/dashboard/_next/static/q4r9Nh54ljO1bGCWloGnX/_ssgManifest.js b/dist/dashboard/_next/static/iHQ8Y5oSAlp7cdhLJAoyy/_ssgManifest.js similarity index 100% rename from dist/dashboard/_next/static/q4r9Nh54ljO1bGCWloGnX/_ssgManifest.js rename to dist/dashboard/_next/static/iHQ8Y5oSAlp7cdhLJAoyy/_ssgManifest.js diff --git a/dist/dashboard/index.html b/dist/dashboard/index.html index 50bbf6f40..94245c612 100644 --- a/dist/dashboard/index.html +++ b/dist/dashboard/index.html @@ -1 +1 @@ -Ocean nodes
Ocean Node Logo
ADMIN ACTIONS
\ No newline at end of file +Ocean nodes
Ocean Node Logo
ADMIN ACTIONS
\ No newline at end of file From 24098735fbdd7d83ccbdec9399764246278faf8c Mon Sep 17 00:00:00 2001 From: Jamie Hewitt Date: Wed, 21 Aug 2024 17:33:53 +0100 Subject: [PATCH 05/10] Moving docker deployment guide to the docs folder --- README.md | 1 + dist/dashboard/404.html | 2 +- .../_buildManifest.js | 0 .../_ssgManifest.js | 0 dist/dashboard/index.html | 2 +- .../README.md => docs/dockerDeployment.md | 32 ++++++++----------- 6 files changed, 17 insertions(+), 20 deletions(-) rename dist/dashboard/_next/static/{iHQ8Y5oSAlp7cdhLJAoyy => rASxdyu4m4aKaUqaWTzPK}/_buildManifest.js (100%) rename dist/dashboard/_next/static/{iHQ8Y5oSAlp7cdhLJAoyy => rASxdyu4m4aKaUqaWTzPK}/_ssgManifest.js (100%) rename deployment/README.md => docs/dockerDeployment.md (95%) diff --git a/README.md b/README.md index 8c1b27731..3182e534d 100644 --- a/README.md +++ b/README.md @@ -130,3 +130,4 @@ Your node is now running, the dashboard will be available at `http://localhost:8 - [Network Configuration](docs/networking.md) - [Logging & accessing logs](docs/networking.md) - [Dashboard: Local development](dashboard/README.md) +- [Docker Deployment Guide](docs/dockerDeployment.md) diff --git a/dist/dashboard/404.html b/dist/dashboard/404.html index 7da9d78cb..f7c8b222c 100644 --- a/dist/dashboard/404.html +++ b/dist/dashboard/404.html @@ -1 +1 @@ -404: This page could not be found

404

This page could not be found.

\ No newline at end of file +404: This page could not be found

404

This page could not be found.

\ No newline at end of file diff --git a/dist/dashboard/_next/static/iHQ8Y5oSAlp7cdhLJAoyy/_buildManifest.js b/dist/dashboard/_next/static/rASxdyu4m4aKaUqaWTzPK/_buildManifest.js similarity index 100% rename from dist/dashboard/_next/static/iHQ8Y5oSAlp7cdhLJAoyy/_buildManifest.js rename to dist/dashboard/_next/static/rASxdyu4m4aKaUqaWTzPK/_buildManifest.js diff --git a/dist/dashboard/_next/static/iHQ8Y5oSAlp7cdhLJAoyy/_ssgManifest.js b/dist/dashboard/_next/static/rASxdyu4m4aKaUqaWTzPK/_ssgManifest.js similarity index 100% rename from dist/dashboard/_next/static/iHQ8Y5oSAlp7cdhLJAoyy/_ssgManifest.js rename to dist/dashboard/_next/static/rASxdyu4m4aKaUqaWTzPK/_ssgManifest.js diff --git a/dist/dashboard/index.html b/dist/dashboard/index.html index 94245c612..21fbd22fa 100644 --- a/dist/dashboard/index.html +++ b/dist/dashboard/index.html @@ -1 +1 @@ -Ocean nodes
Ocean Node Logo
ADMIN ACTIONS
\ No newline at end of file +Ocean nodes
Ocean Node Logo
ADMIN ACTIONS
\ No newline at end of file diff --git a/deployment/README.md b/docs/dockerDeployment.md similarity index 95% rename from deployment/README.md rename to docs/dockerDeployment.md index c2ca84d10..88905f007 100644 --- a/deployment/README.md +++ b/docs/dockerDeployment.md @@ -1,10 +1,12 @@ +# Docker Deployment + This guide is intended to provide quick steps for starting an **Ocean Node** using Docker Engine and Docker Compose plugin. Note: For installing each of these prerequisites, a good starting point is the official documentation: [Install Docker Engine](https://docs.docker.com/engine/install/) and [Overview of installing Docker Compose](https://docs.docker.com/compose/install/) Before starting, confirm that the [system requirements](https://github.com/oceanprotocol/ocean-node?tab=readme-ov-file#system-requirements) are met. -a) download the script `ocean-node-quickstart.sh` from the current directory +a) download the script `ocean-node-quickstart.sh` from the current directory b) run the script @@ -20,11 +22,11 @@ Do you want me to create a private key for you [ y/n ]: y Generating Private Key, please wait... Generated Private Key: << redacted >> Please provide the wallet address to be added as Ocean Node admin account: << redacted >> -Provide the HTTP_API_PORT value or accept the default (press Enter) [8000]: -Provide the P2P_ipV4BindTcpPort or accept the default (press Enter) [9000]: -Provide the P2P_ipV4BindWsPort or accept the default (press Enter) [9001]: -Provide the P2P_ipV6BindTcpPort or accept the default (press Enter) [9002]: -Provide the P2P_ipV6BindWsPort or accept the default (press Enter) [9003]: +Provide the HTTP_API_PORT value or accept the default (press Enter) [8000]: +Provide the P2P_ipV4BindTcpPort or accept the default (press Enter) [9000]: +Provide the P2P_ipV4BindWsPort or accept the default (press Enter) [9001]: +Provide the P2P_ipV6BindTcpPort or accept the default (press Enter) [9002]: +Provide the P2P_ipV6BindWsPort or accept the default (press Enter) [9003]: Provide the public IPv4/IPv6 address or FQDN where this node will be accessible: << redacted >> Docker Compose file has been generated successfully. @@ -45,16 +47,12 @@ P2P IPv6 TCP Port: 9002 P2P IPv6 WebSocket Port: 9003 ``` - - d) start your Ocean Node ```shell $ docker-compose up -d ``` - - e) confirm that docker containers are running ```shell @@ -64,8 +62,6 @@ CONTAINER ID IMAGE COMMAND CREATE 858a59502302 typesense/typesense:26.0 "/opt/typesense-serv…" 17 seconds ago Up 10 seconds 0.0.0.0:8108->8108/tcp, :::8108->8108/tcp typesense ``` - - Additional notes: - the docker compose file generated will have the following format. For all available configurations, refer to the [Environment Variables](https://github.com/oceanprotocol/ocean-node/blob/main/docs/env.md) documentation @@ -78,11 +74,11 @@ services: container_name: ocean-node restart: on-failure ports: - - "8000:8000" - - "9000:9000" - - "9001:9001" - - "9002:9002" - - "9003:9003" + - '8000:8000' + - '9000:9000' + - '9001:9001' + - '9002:9002' + - '9003:9003' environment: PRIVATE_KEY: '<>' RPCS: '{"1":{"rpc":"https://ethereum-rpc.publicnode.com","fallbackRPCs":["https://rpc.ankr.com/eth","https://1rpc.io/eth","https://eth.api.onfinality.io/public"],"chainId":1,"network":"mainnet","chunkSize":100},"10":{"rpc":"https://mainnet.optimism.io","fallbackRPCs":["https://optimism-mainnet.public.blastapi.io","https://rpc.ankr.com/optimism","https://optimism-rpc.publicnode.com"],"chainId":10,"network":"optimism","chunkSize":100},"137":{"rpc":"https://polygon-rpc.com/","fallbackRPCs":["https://polygon-mainnet.public.blastapi.io","https://1rpc.io/matic","https://rpc.ankr.com/polygon"],"chainId":137,"network":"polygon","chunkSize":100},"23294":{"rpc":"https://sapphire.oasis.io","fallbackRPCs":["https://1rpc.io/oasis/sapphire"],"chainId":23294,"network":"sapphire","chunkSize":100},"23295":{"rpc":"https://testnet.sapphire.oasis.io","chainId":23295,"network":"sapphire-testnet","chunkSize":100},"11155111":{"rpc":"https://eth-sepolia.public.blastapi.io","fallbackRPCs":["https://1rpc.io/sepolia","https://eth-sepolia.g.alchemy.com/v2/demo"],"chainId":11155111,"network":"sepolia","chunkSize":100},"11155420":{"rpc":"https://sepolia.optimism.io","fallbackRPCs":["https://endpoints.omniatech.io/v1/op/sepolia/public","https://optimism-sepolia.blockpi.network/v1/rpc/public"],"chainId":11155420,"network":"optimism-sepolia","chunkSize":100}}' @@ -138,7 +134,7 @@ services: image: typesense/typesense:26.0 container_name: typesense ports: - - "8108:8108" + - '8108:8108' networks: - ocean_network volumes: From a6031bf592d78ca156073d0b5adb82d08fab8392 Mon Sep 17 00:00:00 2001 From: Jamie Hewitt Date: Wed, 21 Aug 2024 17:38:10 +0100 Subject: [PATCH 06/10] Adding docker quickstart command to the readme --- README.md | 6 +++--- docs/dockerDeployment.md | 2 +- package.json | 2 +- {deployment => scripts}/ocean-node-quickstart.sh | 0 4 files changed, 5 insertions(+), 5 deletions(-) rename {deployment => scripts}/ocean-node-quickstart.sh (100%) diff --git a/README.md b/README.md index 3182e534d..7ff41a10a 100644 --- a/README.md +++ b/README.md @@ -20,9 +20,9 @@ We recommend the following minimum requirements, although you may be be able to Build and run the node using Docker: ```bash -docker build -t ocean-node:mybuild . # Build the Docker image -# Make sure you include 0x at the start of the private key -docker run -e PRIVATE_KEY=0x_your_private_key_here ocean-node:mybuild # Start container +scripts/ocean-node-quickstart.sh +# OR +npm run quickstart ``` ## Option 2: Running Ocean Nodes with PM2 diff --git a/docs/dockerDeployment.md b/docs/dockerDeployment.md index 88905f007..4a3354396 100644 --- a/docs/dockerDeployment.md +++ b/docs/dockerDeployment.md @@ -11,7 +11,7 @@ a) download the script `ocean-node-quickstart.sh` from the current directory b) run the script ```shell -bash ocean-node-quickstart.sh +bash scripts/ocean-node-quickstart.sh ``` c) provide the necessary information interactively (example) diff --git a/package.json b/package.json index 72ce358c2..7d8e2bbd4 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "build": "npm run clean && npm run check-changes && npm run build:tsc", "build:no-dashboard": "npm run clean && npm run build:tsc", "build:tsc": "tsc --sourceMap", - "quick:start": "npm run build && setupEnv && npm run start", + "quickstart": "bash scripts/ocean-node-quickstart.sh", "setupEnv": "bash -c './src/helpers/scripts/setupNodeEnv.sh && source .env'", "build-tests:tsc": "tsc --sourceMap --sourceRoot ./src/test && cp ./src/test/.env.test ./dist/test", "build:dashboard": "cd dashboard && npm install --maxsockets 1 && NODE_ENV=production npx next build", diff --git a/deployment/ocean-node-quickstart.sh b/scripts/ocean-node-quickstart.sh similarity index 100% rename from deployment/ocean-node-quickstart.sh rename to scripts/ocean-node-quickstart.sh From b97303bc7c13b66c21d02427cba059fd396efd08 Mon Sep 17 00:00:00 2001 From: Jamie Hewitt Date: Wed, 21 Aug 2024 17:42:42 +0100 Subject: [PATCH 07/10] Updating guide --- docs/dockerDeployment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dockerDeployment.md b/docs/dockerDeployment.md index 4a3354396..c019a64f0 100644 --- a/docs/dockerDeployment.md +++ b/docs/dockerDeployment.md @@ -1,4 +1,4 @@ -# Docker Deployment +# Docker Deployment Guide This guide is intended to provide quick steps for starting an **Ocean Node** using Docker Engine and Docker Compose plugin. From 8c3142daf6b1c8bbf505da67f159949d179e9cb7 Mon Sep 17 00:00:00 2001 From: Jamie Hewitt Date: Wed, 21 Aug 2024 17:45:51 +0100 Subject: [PATCH 08/10] Updates --- dist/dashboard/404.html | 2 +- .../_buildManifest.js | 0 .../_ssgManifest.js | 0 dist/dashboard/index.html | 2 +- 4 files changed, 2 insertions(+), 2 deletions(-) rename dist/dashboard/_next/static/{rASxdyu4m4aKaUqaWTzPK => iHQ8Y5oSAlp7cdhLJAoyy}/_buildManifest.js (100%) rename dist/dashboard/_next/static/{rASxdyu4m4aKaUqaWTzPK => iHQ8Y5oSAlp7cdhLJAoyy}/_ssgManifest.js (100%) diff --git a/dist/dashboard/404.html b/dist/dashboard/404.html index f7c8b222c..7da9d78cb 100644 --- a/dist/dashboard/404.html +++ b/dist/dashboard/404.html @@ -1 +1 @@ -404: This page could not be found

404

This page could not be found.

\ No newline at end of file +404: This page could not be found

404

This page could not be found.

\ No newline at end of file diff --git a/dist/dashboard/_next/static/rASxdyu4m4aKaUqaWTzPK/_buildManifest.js b/dist/dashboard/_next/static/iHQ8Y5oSAlp7cdhLJAoyy/_buildManifest.js similarity index 100% rename from dist/dashboard/_next/static/rASxdyu4m4aKaUqaWTzPK/_buildManifest.js rename to dist/dashboard/_next/static/iHQ8Y5oSAlp7cdhLJAoyy/_buildManifest.js diff --git a/dist/dashboard/_next/static/rASxdyu4m4aKaUqaWTzPK/_ssgManifest.js b/dist/dashboard/_next/static/iHQ8Y5oSAlp7cdhLJAoyy/_ssgManifest.js similarity index 100% rename from dist/dashboard/_next/static/rASxdyu4m4aKaUqaWTzPK/_ssgManifest.js rename to dist/dashboard/_next/static/iHQ8Y5oSAlp7cdhLJAoyy/_ssgManifest.js diff --git a/dist/dashboard/index.html b/dist/dashboard/index.html index 21fbd22fa..94245c612 100644 --- a/dist/dashboard/index.html +++ b/dist/dashboard/index.html @@ -1 +1 @@ -Ocean nodes
Ocean Node Logo
ADMIN ACTIONS
\ No newline at end of file +Ocean nodes
Ocean Node Logo
ADMIN ACTIONS
\ No newline at end of file From b80c271d4fd9f735dec913174d1e948f566142d2 Mon Sep 17 00:00:00 2001 From: Jamie Hewitt Date: Wed, 21 Aug 2024 17:47:17 +0100 Subject: [PATCH 09/10] Updating readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 7ff41a10a..04dd463ee 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,8 @@ scripts/ocean-node-quickstart.sh npm run quickstart ``` +This command will run you through the process of setting up the environmental variables for your node. + ## Option 2: Running Ocean Nodes with PM2 PM2 is a process manager that makes it easy to manage and monitor your Node.js applications. From 9613c9d4aa0c0c446208b8dfb316bcd52b980c04 Mon Sep 17 00:00:00 2001 From: mariacarmina Date: Tue, 27 Aug 2024 16:30:44 +0300 Subject: [PATCH 10/10] Remove Docker occurence. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4a7c06baa..526d9e321 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ The other options are more recommended towards deleveopers that want to tinker. ## Option 2: Running local build of Ocean Nodes in Docker -Build and run the node using Docker: +Run the following script to deploy node: ```bash scripts/ocean-node-quickstart.sh