open-bounty/README.md

212 lines
7.0 KiB
Markdown
Raw Normal View History

2018-01-17 09:13:06 +00:00
# Status Open Bounty
2018-03-11 07:00:07 +00:00
[![Riot Chat Badge](https://img.shields.io/badge/join%20%23openbounty-riot-green.svg)](https://chat.status.im/#/room/#openbounty:status.im)
2018-01-17 09:15:46 +00:00
Allows you to set bounties for Github issues, paid out in Ether or any ERC-20 token.
2017-01-23 06:19:16 +00:00
More information:
2018-01-17 09:13:06 +00:00
https://wiki.status.im/Status_Open_Bounty
2017-01-23 06:19:16 +00:00
2018-01-17 09:13:06 +00:00
Live production version:
2017-10-30 17:20:08 +00:00
https://openbounty.status.im
2017-08-19 09:11:53 +00:00
The `master` branch is automatically deployed here.
Live testnet (Ropsten) version:
2017-10-29 08:59:28 +00:00
https://openbounty.status.im:444
2017-08-19 09:11:53 +00:00
The `develop` branch is automatically deployed here.
## Table of contents
- [Prerequisites](#prerequisites)
- [Application config](#application-config)
- [GitHub integration](#github-integration)
- [Contracts](#contracts)
- [Running](#running)
- [Testing](#testing)
- [More info](#more-info)
## Prerequisites
2018-02-02 11:23:26 +00:00
You will need [Leiningen](https://github.com/technomancy/leiningen) 2.0 or above installed. Also, make sure that you have [wkhtmltoimage](https://wkhtmltopdf.org/downloads.html) available in your PATH. On macOS, it can be installed via `brew cask install wkhtmltopdf`.
2017-07-26 21:50:08 +00:00
### PostgreSQL
Make sure you install [PostgreSQL](https://www.postgresql.org/) and properly set it up:
```
psql postgres -c "CREATE USER commiteth WITH PASSWORD 'commiteth';"
psql postgres -c "CREATE DATABASE commiteth;"
2017-07-26 21:50:08 +00:00
```
## Application config
2018-02-03 08:51:06 +00:00
Make sure to create `/config-dev.edn` and populate it correctly, which is based on `env/dev/resources/config.edn`. Description of config fields is given below:
Key | Description
--- | ---
dev | Currently specifies whether Swagger UI endpoints should be added to routes
port | HTTP port for the Ring web app
nrepl-port | nREPL port for development
jdbc-database-url | PostgreSQL database URL. For instance, URL to local db would be `jdbc:postgresql://localhost/commiteth?user=commiteth&password=commiteth`
server-address | URL and port of local server that can be resolved from public internet. It will be used as a redirect URI during GitHub OAuth authorization process
eth-account | Ethereum account ID for the bot
eth-password | Ethereum account password for the bot
eth-rpc-url | RPC URL to Ethereum node, e.g. Geth. Either local or remote
eth-wallet-file | Location of wallet file. If Geth is run with the parameters as given below, it will reside under `$HOME/.ropsten/keystore`
2018-02-19 15:59:56 +00:00
offline-signing | Specifies whether to sign transactions locally before sending. Default is true. Set to false when connecting to local Geth node that unlocks accounts
tokenreg-base-format | Should be set to `:status`
github-client-id | Related to OAuth. Copied from GitHub account Settings->Developer settings->OAuth Apps
github-client-secret | Related to OAuth. Copied from GitHub account Settings->Developer settings->OAuth Apps
github-user | GitHub username for bot account. It is used for posting bounty comments
github-password | GitHub password for bot account
webhook-secret | Secret string to be used when creating a GitHub App
user-whitelist | Set of GitHub user/org IDs to be whitelisted. E.g. `#{"status-im" "your_org"}`
testnet-token-data | Token data map, useful if there are Geth connectivity problems
## GitHub integration
Open Bounty uses both OAuth App and GitHub App integration.
### OAuth App
2018-02-03 08:51:06 +00:00
Follow the steps [here](https://developer.github.com/apps/building-oauth-apps/creating-an-oauth-app/). Specify the value of `:server-address` as "Homepage URL", and `:server-address` + `/callback` as "Authorization callback URL". Be sure to copy Client ID and Client Secret values in the config file.
### GitHub App
Follow the steps [here](https://developer.github.com/apps/building-github-apps/creating-a-github-app/). Be sure to specify `:server-address` + `/webhook-app` as "Webhook URL", and `:webhook-secret` as "Webhook Secret".
## Contracts
All information related to development of OpenBounty smart contracts can be found in [`contracts/`](/contracts/)
## Running
2017-10-26 18:51:43 +00:00
2018-02-16 17:09:26 +00:00
### Ethereum node
There are two options for connecting to an Ethereum node: either run a local node with an unlocked account, or connect to a remote Geth node or Infura. We will be connecting to Ropsten which is a test Ethereum network.
2018-02-16 17:09:26 +00:00
#### Local
In order to launch a local geth node with the bot account unlocked issue the following command:
2017-10-26 18:51:43 +00:00
```
#!/bin/bash
2017-10-29 16:30:17 +00:00
geth --fast --testnet --cache=1024 --datadir=$HOME/.ropsten --verbosity 4 --port 50100 --ipcpath ~/.ropsten/geth.ipc --rpc --rpcaddr 127.0.0.1 --rpcport 8545 --rpcapi db,eth,net,web3,personal --rpccorsdomain "https://wallet.ethereum.org" --unlock "0xYOUR_ADDR" --password <(echo "YOUR_PASSPHRASE")
2017-10-26 18:51:43 +00:00
```
2018-02-16 17:09:26 +00:00
#### Remote
Register at [Infura](https://infura.io/signup). You will receive an email with provider URLs. Paste an URL for the Ropsten network into `config.edn` under `:eth-rpc-url` key, and set `:offline-signing` to true.
2018-02-16 17:09:26 +00:00
### CSS auto-compilation
2017-10-29 16:30:17 +00:00
Launch the following command in a separate shell:
2017-07-26 21:50:08 +00:00
```
lein less auto
2017-08-19 09:11:53 +00:00
```
### Solidity compilation
Invoke `build-contracts` Leiningen task to compile Solidity files into Java classes:
```
lein build-contracts
```
### Clojure app without REPL
Launch following commands each in its own shell:
```
lein run
lein figwheel
```
### Clojure app with REPL
You'll have to start a REPL on the backend and the frontend.
2017-10-26 18:51:43 +00:00
2017-10-29 16:30:17 +00:00
```
lein repl
```
Now you can start a CLJS repl with:
```
(use 'figwheel-sidecar.repl-api)
(start-figwheel!)
(cljs-repl)
```
(Alternatively, if you use emacs and CIDER, you can run cider-jack-in. Details [here](https://cider.readthedocs.io/en/latest/up_and_running/))
Next start the application from the clojure REPL with:
```
(user/start)
```
2017-08-19 09:11:53 +00:00
## Uberjar build
2017-07-26 21:50:08 +00:00
2017-08-19 09:11:53 +00:00
To create a standalone uberjar:
```
lein uberjar
2017-07-26 21:50:08 +00:00
```
This creates `target/uberjar/commiteth.jar`. You can run it with the following command from within project root:
```
java -Dconf=<path_to_config.edn> -jar target/uberjar/commiteth.jar
```
2017-08-19 09:11:53 +00:00
## Testing
2017-10-29 16:30:17 +00:00
### QA
Please refer to [doc/testing.md](https://github.com/status-im/commiteth/blob/develop/doc/testing.md)
### Clojure tests
2017-07-26 21:50:08 +00:00
```
lein test
```
### ClojureScript tests
2017-07-26 21:50:08 +00:00
```
lein with-profile test doo phantom test
```
### Reagent component devcards
2017-07-26 21:50:08 +00:00
```
lein with-profile test figwheel devcards
```
Open http://localhost:3449/cards.html
2018-03-26 16:26:48 +00:00
### CircleCI
We use CircleCI to run unit tests. The following env vars need to be set for this to work:
> These env vars override configuration parameters that are usually set using the `config.edn` file.
- `ETH_ACCOUNT` - as in `config.edn`
- `ETH_PASSWORD` - as in `config.edn`
- `ETH_RPC_URL` - as in `config.edn`
- `ETH_WALLET_FILE` - as in `config.edn`
- `ETH_WALLET_JSON` - contents of this will be written to `ETH_WALLET_FILE`
:bulb: Ideally we'd create those parameters in a script. PR welcome.
## Update landing page
2017-10-30 16:10:27 +00:00
Landing page is static and different CSS and JS due to time constraints.
- Build CSS with Gulp (see `static_landing_page/README.md`
- Make changes and `./build-landing-page.sh`
This copies over necessary artifacts to `resources` dir.
## More info
Detailed information on code structure, troubleshooting, etc. can be found [here](doc/README.md).
## License
2017-03-09 14:34:40 +00:00
Licensed under the [Affero General Public License v3.0](https://github.com/status-im/commiteth/blob/master/LICENSE.md)