.
├── contracts
│ └── Migrations.sol
├── migrations
│ └── 1_initial_migration.js
├── test
├── truffle-config.js
└── truffle.js
module.exports = {
networks: {
development: {
host: “127.0.0.1”, // Localhost (default: none)
port: 7545, // Standard Ethereum port (default: none)
network_id: “*” // Any network (default: none)
}
}
}
这个时候直接运行** truffle migrate**命令,如果出现下图就成功部署了。
如果出现ExtendableError: Could not find suitable configuration file.
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)