Skip to content

Commit

Permalink
Add info for NodeJS version 14
Browse files Browse the repository at this point in the history
  • Loading branch information
chmanie authored and kronosapiens committed Sep 14, 2022
1 parent b55c202 commit fd5949e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/.templates/votingreputation.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Motions & Disputes Extension (`VotingReputation`)

This extesion allows any member of your colony to propose a Motion to take an Action that will pass after a security delay unless somebody Objects. This applies to all Actions, such as creating an expenditure, managing funds, or managing teams.
This extension allows any member of your colony to propose a Motion to take an Action that will pass after a security delay unless somebody Objects. This applies to all Actions, such as creating an expenditure, managing funds, or managing teams.

See [here](https://colony.gitbook.io/colony/extensions/governance) for more information.
2 changes: 1 addition & 1 deletion docs/interfaces/votingreputation.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Motions & Disputes Extension (`VotingReputation`)

This extesion allows any member of your colony to propose a Motion to take an Action that will pass after a security delay unless somebody Objects. This applies to all Actions, such as creating an expenditure, managing funds, or managing teams.
This extension allows any member of your colony to propose a Motion to take an Action that will pass after a security delay unless somebody Objects. This applies to all Actions, such as creating an expenditure, managing funds, or managing teams.

See [here](https://colony.gitbook.io/colony/extensions/governance) for more information.

Expand Down
9 changes: 7 additions & 2 deletions docs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import TabItem from '@theme/TabItem';

You will need:

* [NodeJS](https://nodejs.org/en/) v12.x (use [nvm](https://github.com/nvm-sh/nvm))
* [NodeJS](https://nodejs.org/en/) v14.x (use [nvm](https://github.com/nvm-sh/nvm))
* [Docker](https://docs.docker.com/get-docker/) (at least v18, **optional**)

The Colony Network contracts are written in [Solidity](https://soliditylang.org/) and are built, tested and deployed using the [Truffle Suite](https://trufflesuite.com/). With the above dependencies in place you can just follow the instructions below and the Colony Network build scripts will sort out everything else for you.
Expand Down Expand Up @@ -47,7 +47,8 @@ Check out a tagged git release if you want to develop _against_ the ColonyNetwor
Then, install the required dependencies using `npm`:

```bash
npm ci # make sure you are using node version 12.x
nvm use # alternatively, make sure you are using node version 14.x
npm ci # make sure you are using node version 14.x
```

This will take some time. If you run into issues, see the Troubleshooting section below.
Expand Down Expand Up @@ -94,3 +95,7 @@ pyenv local 2.7.18
```

This will create a file called `.python-version` and instruct pyenv to use Python in version `2.7.18`. After that, try running `npm ci` again.

### Q: I'm trying to deploy but it can't connect to the local ganache instance

A: Use NodeJS version 14.x [nvm](https://github.com/nvm-sh/nvm) can help!

0 comments on commit fd5949e

Please sign in to comment.