This worked for me:
Open a command prompt / terminal and change the working directory to the application directory (simple in this case). In this way,
cd simple-todos
Installation port for your meteor application:
meteor --port 3000
Or another port using:
meteor --port 3030
If you have a settings file (settings.json) for the meteor application, you can start the application using the following command:
meteor --settings settings.json
If you have successfully created the port, you will get a response like this:
[[[[[// public_html / simple-todos]]]]]
=> Initial proxy.
=> MongoDB launched.
=> Launched the application.
=> The application runs on: http: // localhost: 3000 /
source share