@colony/colony-starter-vue v1.0.0-beta.0
colony-starter-react
A boilerplate to get started with colonyJS using React!
Prerequisites
- Node
>=10.13.0 - Yarn
>=1.12.0 - Docker
>=18.09.0
You may find it helpful to use Node Version Manager (nvm) to manage Node versions.
If you are using Linux, check out Linux Setup to ensure Yarn and Docker are set up accordingly.
Installation
Step 1
Globally install the colony-cli package:
yarn global add @colony/colony-cliStep 2
Move to your working directory and unpack the colony-starter-react package:
colony build colony-starter-reactStep 3
Move to your new project directory and follow the instructions below:
cd colony-starter-reactUsing NPX
Alternatively, you can use npx and unpack the colony-starter-react package without installing the colony-cli package.
npx -p @colony/colony-cli colony build colony-starter-reactDevelopment
Start Network
Open a new terminal window and start Ganache:
yarn start-ganacheDeploy Contracts
Open a new terminal window and deploy the colonyNetwork contracts:
yarn deploy-contractsStart TrufflePig
Once the contracts have been deployed, start TrufflePig:
yarn start-trufflepigSeed Network
Open a new terminal window and run the seed network script:
yarn seed-networkColony Setup
Once the network has been seeded, run the colony setup script:
yarn colony-setupStart Server
Once your test colony has been set up, start the development server:
yarn serveOpen Browser
Open your browser and start building:
Run Tests
Open a new terminal window and run the example tests:
yarn testContract Versions
If you do not want to use the default version of the colonyNetwork smart contracts defined by the colony-cli package, you can update the "deploy-contracts" scripts property in your package.json file to use a specific version. This can be a branch name, a commit hash, or a version tag.
"deploy-contracts": "colony service deploy-contracts --specific glider",6 years ago