From d1c375493fdca763dedde922ebad4064b179a5d1 Mon Sep 17 00:00:00 2001 From: Teemu Patja Date: Thu, 2 Nov 2017 09:04:02 +0200 Subject: [PATCH] Add + document more items in example config.edn file --- env/dev/resources/config.edn | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/env/dev/resources/config.edn b/env/dev/resources/config.edn index 7833b1a..fea607b 100644 --- a/env/dev/resources/config.edn +++ b/env/dev/resources/config.edn @@ -7,13 +7,21 @@ :server-address "http://PUBLIC-DNS:3000" ;; eth address of bot account - :eth-account "0x.." + :eth-account "0x..." :eth-password "XXX" ;; RPC URL to ethereum node to be used :eth-rpc-url "http://localhost:8547" :eth-wallet-file "/some/location" + ;; address of token registry to be used + :tokenreg-addr "0x..." + ;; format of tokenreg records' base field, possible values :status, :parity + :tokenreg-base-format :parity + + ;; address of factory contract used for deploying bounty contracts + :contract-factory-addr "0x..." + ;; commiteth-test-tpatja :github-client-id "CLIENT ID" :github-client-secret "CLIENT SECRET" @@ -21,6 +29,13 @@ ;; github username + password for bot account :github-user "commiteth" :github-password "XXX" - :on-testnet true} + ;; set to true when on Ropsten testnet + :on-testnet true + ;; feature toggles + :add-bounties-for-existing-issues false + :hubspot-contact-create-enabled false + + ;; needeed when :hubspot-contact-create-enabled + :hubspot-api-key "xxxxxxx-xxxx-x-xxxx-xxxx"}