Skip to content

Latest commit

 

History

History
57 lines (34 loc) · 686 Bytes

SETUP.md

File metadata and controls

57 lines (34 loc) · 686 Bytes

작성 중..

Prerequisites

node and yarn

알아서 설치

truffle.js

npm install -g truffle@4.1.15

Install Dependencies

$ yarn install

Setup Environment Variables

.env 파일을 하나 만들어야 하며 개인 키와 컨트렉트 주소가 들어있어야 함. 형식은 아래 참고.

PRIVATE_KEY=0xe01d2...
CONTRACT_ADDRESS=0x2e147a...

Setup Contracts

compile contracts

$ yarn compile

It's will be truffle compile

deploy contracts

$ yarn deploy

compile reset도 같이 하며 주소를 .env에 저장함.

Start Server

default port is 5000

$ yarn start