Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 838 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 838 Bytes

Python Dev Dapp Template

A template for building dapps with eth-brownie and reactjs.

Getting Started

There are a couple of things you'll need to edit once you've created your repository using this template:

  • Change project name in package.json
  • Update README.md

To initialize your environment you'll need to have the following dependencies pre-installed:

  • pip - package manager
  • npm - package manager
  • ganache-cli - local RPC client for running tests

Note: This project uses python for smart contract development, but reactjs and nodejs for front-end development.

Follow the steps below to complete the environment initialization:

$ python -m venv venv
$ ./venv/bin/activate
$ pip install -r requirements.txt
$ npm ci
$ sudo npm install -g ganache-cli
$ pre-commit install