diff --git a/documentation/operators/src/release-cycle.md b/documentation/operators/src/release-cycle.md index 83162da0d0e..e145bb417f1 100644 --- a/documentation/operators/src/release-cycle.md +++ b/documentation/operators/src/release-cycle.md @@ -13,13 +13,13 @@ The core team therefore established a flow with different environments: Frequency of releases to mainnet is aimed to be every ~14 days. This time time window is an optimal compromise between periodicity and qualty assurance/testing, key factors playing an essential role in the development. -| **Stage** | **Environment** | **Branch** | **Ownership | -| :-- | :-- | :-- | :-- | -| development work | local/canary | feature branches | devs | -| cut and test release | canary | release branch | QA | -| bug fixing | canary | directly on release branch | QA & devs | -| put release on sandbox | sandbox | release -> master/develop | QA | -| promote release to mainnet after 3-5 days | mainnet | master | QA | +| **Stage** | **Environment** | **Branch** | **Ownership** | +| :-- | :-- | :-- | :-- | +| development work | local/canary | feature branches | devs | +| cut and test release | canary | release branch | QA | +| bug fixing | canary | directly on release branch | QA & devs | +| put release on sandbox | sandbox | release -> master/develop | QA | +| promote release to mainnet after 3-5 days | mainnet | master | QA | ```ascii ▲ ▲ diff --git a/documentation/operators/src/sandbox.md b/documentation/operators/src/sandbox.md index aac6d3f4bcb..a3921985899 100644 --- a/documentation/operators/src/sandbox.md +++ b/documentation/operators/src/sandbox.md @@ -18,13 +18,13 @@ To run Nym binaries in Sandbox Testnet you need to get the `.env` configuration curl -o sandbox.env -L https://raw.githubusercontent.com/nymtech/nym/develop/envs/sandbox.env ``` -2. Run your `nym-node` with all the commands as always with an additional flag `-c` or `--config-env-file` with a path to `sanbox.env` file. For example: +2. Run your `nym-node` with an additional flag `-c` or `--config-env-file` with a path to `sanbox.env` file followed by all needed commands and options. For example: ```sh # this example is for mixnode mode -./nym-node run --mode mixnode --config-env-file +./nym-node --config-env-file sandbox.env run --mode mixnode # this example is for exit-gateway mode -./nym-node run --mode exit-gateway --id --config-env-file --public-ips "$(curl -4 https://ifconfig.me)" --hostname "" --http-bind-address 0.0.0.0:8080 --mixnet-bind-address 0.0.0.0:1789 true --location +./nym-node --config-file-env sandbox.env run --mode exit-gateway --id --public-ips "$(curl -4 https://ifconfig.me)" --hostname "" --http-bind-address 0.0.0.0:8080 --mixnet-bind-address 0.0.0.0:1789 true --location ``` 3. Bond your node to Nym Sandbox environment: