mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-17 11:25:55 +08:00
12 lines
301 B
JavaScript
12 lines
301 B
JavaScript
module.exports = {
|
|
// See <http://truffleframework.com/docs/advanced/configuration>
|
|
// to customize your Truffle configuration!
|
|
networks: {
|
|
development: {
|
|
host: "localhost",
|
|
port: 7545,
|
|
network_id: "*" // Match any network id
|
|
}
|
|
}
|
|
};
|