1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/truffle.md

25 lines
595 B
Markdown
Raw Normal View History

# truffle
> Ethereum 블록체인에서 서비스를 실행하기 위한 스마트 계약 개발 도구.
> 더 많은 정보: <https://www.trufflesuite.com/docs/truffle/reference/truffle-commands>.
- 미리 만들어진 Truffle 프로젝트(Truffle Box) 다운로드:
`truffle unbox {{박스_이름}}`
- 현재 디렉토리의 계약 소스 파일 컴파일:
`truffle compile`
- JavaScript 및 Solidity 테스트 실행:
`truffle test`
- 계약 배포를 위한 마이그레이션 실행:
`truffle migrate`
- 하위 명령에 대한 도움말 표시:
`truffle help {{하위_명령}}`