How to run meteor server on a different ip address?

前端 未结 9 1844
悲哀的现实
悲哀的现实 2020-12-02 23:51

How can i start meteor server on a different IP address? Currently in the examples am only able to run on a localhost:3000 address.

9条回答
  •  悲&欢浪女
    2020-12-03 00:25

    Actually, Meteor behaves differently in production and development environments.

    Production

    Use environment variable BIND_IP

    Development

    Use --port argument like meteor run --port 192.168.1.1:port

    Docs here

提交回复
热议问题