truffle migrateエラー解決方法


truffleバージョン4.0.4
truffle migrate 
Error: No network specified. Cannot determine current network.

    at Object.detect (/usr/local/lib/node_modules/truffle/build/cli.bundled.js:41338:23)

    at /usr/local/lib/node_modules/truffle/build/cli.bundled.js:202239:19

    at finished (/usr/local/lib/node_modules/truffle/build/cli.bundled.js:41266:9)

    at /usr/local/lib/node_modules/truffle/build/cli.bundled.js:200593:14

    at /usr/local/lib/node_modules/truffle/build/cli.bundled.js:63299:7

    at /usr/local/lib/node_modules/truffle/build/cli.bundled.js:165077:9

    at /usr/local/lib/node_modules/truffle/build/cli.bundled.js:161676:16

    at replenish (/usr/local/lib/node_modules/truffle/build/cli.bundled.js:162196:25)

    at iterateeCallback (/usr/local/lib/node_modules/truffle/build/cli.bundled.js:162186:17)

    at /usr/local/lib/node_modules/truffle/build/cli.bundled.js:162161:16

上記の異常の原因はtruffleのためです.jsにはリンク契約の発行環境アドレスが設定されておらず、対応するtruffleが見つかります.jsファイル、コードを以下のように変更すると、問題を解決できます.
module.exports = {
    networks: {
        development: {
            host: "localhost",
            port: 8545,
            network_id: "*" //  network id
         }
    }
};