Skip to content

Commit 88d461b

Browse files
more clarification
1 parent 4fd428d commit 88d461b

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

docs/cdk/get-started/deploy-validium/contracts/prerequisites.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ Use a public faucet to get Sepolia test ETH.
3939

4040
We will be working with two separate `.env` files.
4141

42-
- One `.env` file resides in the contracts project directory. We will set this up in the [contract set up](set-up.md#create-the-env-configuration) section.
43-
- Another `.env` resides in a shared system directory so that it is accessible to the node and all running processes. We will populate this file as we go along.
42+
- One `.env` file resides in the contracts project directory. We will set this up in the [contract set up](set-up.md#create-the-contracts-env-configuration) section.
43+
- Another `.env` resides in a shared system directory so that it is accessible to the node and all running processes.
4444

4545
Create a folder `/tmp/cdk/` to store the shared `.env` file which will be used by all running processes.
4646

@@ -56,11 +56,11 @@ mkdir /tmp/cdk/
5656

5757
Create a `.env` file to store the environment variables that all running processes will share. This shared `.env` file allows us to use `jq` and `tomlq` to easily setup the configuration for the node and running processes.
5858

59-
This file will be populated throughout the [deploy node](../node/prerequisites.md) instructions.
59+
After adding a few variables to this file in the next [set up section](set-up.md#create-the-shared-system-env-configuration), this file is populated with more environment variables during the [node set up step](../node/set-up.md) and is then accessed by the system throughout the [deploy node configuration step](../node/configure-deployment.md) and [node and services run step](../node/run-node-services.md).
6060

6161
```bash
6262
nano /tmp/cdk/.env
6363
```
6464

6565
!!! danger
66-
Don't forget, the system removes this file on shutdown.
66+
Don't forget: The system removes this file on shutdown.

docs/cdk/get-started/deploy-validium/contracts/set-up.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,15 @@ npm install
8686
!!! info
8787
Check the documentation if you want to [use a different node provider](deploy-contracts.md#use-a-different-node-provider).
8888

89-
5. Now open the *other* `.env` file residing in `/tmp/cdk/.env` which we created in the prerequisite steps.
89+
## Create the shared system `.env` configuration
90+
91+
1. Now open the *other* `.env` file residing in `/tmp/cdk/.env` which we created in the prerequisite steps.
9092

9193
```sh
9294
nano /tmp/cdk/.env
9395
```
9496

95-
6. Below is what the `.env` file will more or less look like, although you may see actual data in there from a previous run.
97+
2. Below is what the `.env` file will more or less look like, although you may see actual data in there from a previous run.
9698

9799
```sh
98100
TEST_ADDRESS="<the address generated by cast above>"

0 commit comments

Comments
 (0)