Skip to content

Commit

Permalink
syntax fix (#4653)
Browse files Browse the repository at this point in the history
  • Loading branch information
serinko authored Jun 14, 2024
1 parent e8540c1 commit 8585a68
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions documentation/operators/src/release-cycle.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
▲ ▲
Expand Down
6 changes: 3 additions & 3 deletions documentation/operators/src/sandbox.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <PATH/TO/sandbox.env>
./nym-node --config-env-file <PATH/TO/>sandbox.env run --mode mixnode

# this example is for exit-gateway mode
./nym-node run --mode exit-gateway --id <ID> --config-env-file <PATH/TO/sandbox.env> --public-ips "$(curl -4 https://ifconfig.me)" --hostname "<YOUR_DOMAIN>" --http-bind-address 0.0.0.0:8080 --mixnet-bind-address 0.0.0.0:1789 true --location <COUNTRY_FULL_NAME>
./nym-node --config-file-env <PATH/TO/>sandbox.env run --mode exit-gateway --id <ID> --public-ips "$(curl -4 https://ifconfig.me)" --hostname "<YOUR_DOMAIN>" --http-bind-address 0.0.0.0:8080 --mixnet-bind-address 0.0.0.0:1789 true --location <COUNTRY_FULL_NAME>
```

3. Bond your node to Nym Sandbox environment:
Expand Down

0 comments on commit 8585a68

Please sign in to comment.