sihoang / charity-staking

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status

Charity TCR

Work-in-progress

Overview

Token Curated Registries for Non-profit Organizations

As the digital world is overtaken by the mob, a solution may be found in the wisdom of the crowd. -George Li

Getting started

npm install
  • Configure the CMS_URL pointing to charity-management-serv in webpack.config.js. The URL should end with /api/v0, no trailing slash.
new webpack.DefinePlugin({
  CMS_URL: JSON.stringify(process.env.CMS_URL || 'http://localhost:8001/api/v0'),
}),
  • Start the dApp:
    • Local network: npm run dev It will launch a private local testnet on your machine and deploy new set of contracts if this is your first time. Accounts are loaded with free test ETH so you can interact with the dApp.
    • Rinkeby: npm run dev -- testnet The contracts already deployed and specified in config/contract.js. If you want to deploy your own, make sure your account[0] has Rinkeby ETH and remove the contract addresses in the testnet config.

Docker

Checkout the latest release:

docker pull sihoang/charity-tcr:testnet-latest

Checkout the latest code on local:

docker build -t charity-tcr .

These images are built with these args:

ARG ENVIRONMENT=testnet
ARG CMS_URL=https://tcr.wetrust.info/api/v0

Feel free to overwrite them as you please.

Launch the container:

docker run -i --rm -p 8000:80 sihoang/charity-tcr

The webserver is at http://localhost:8000

License

GPL-3.0 © WeTrustPlatform

About

License:GNU General Public License v3.0


Languages

Language:JavaScript 98.5%Language:Dockerfile 0.8%Language:HTML 0.5%Language:CSS 0.1%