Meteor mup setup not working

I would like to use Meteor Up to deploy my application on my Digital Ocean server.

I have init with mup initand config my mup.js. When I run mup setup, it just opens my mup.js in my editor.

Do you have an idea why the file is open and did not configure my server?

READ!

+4
source share
2 answers

The problem is that mup.js has a connection with the program, instead of typing mup use

mup.cmd

eg,

   mup.cmd setup
   mup.cmd deploy
+3
source

I had a similar problem when my command line did not run the mup commands. I finally found a solution in which I used Windows PowerShell.

"" Windows PowerShell, , .

+1

Source: https://habr.com/ru/post/1650944/


All Articles