A CLI for setting up an Aracred instance
* An [Ethereum Address](https://metamask.io) with some [ETH](https://www.sendwyre.com)
* An [Aragon DAO](http://mainnet.aragon.org/#/create) (you need at lest 0.1 ETH to deploy your own DAO)
* A [GitHub](https://GitHub.com) Account
* A [Infura](https://infura.io)
Create a Local version of Aracred configured to your DAO
npx aracred-init
This will create ./aracred-template
folder in your working directory
- create a new repository in your organisation and name it Aracred
- in the settings section of your repo, navigate to
Actions
and selectEnable local and third party Actions for this repository
- also in settings, navigate to
Secrets
and add your infura key asINFURA_KEY
, and your Ethereum private key asPRIVATE_KEY
.
To Launch Aracred you simply need to push your local version to your new repo. In ./aracred-template
git init
git remote add origin https://github.com/pythonpete32/Aracred.git
git push -u origin master