...

/

Deploying a Meteor App to a Server Using Meteor Up

Deploying a Meteor App to a Server Using Meteor Up

Learn how to deploy a Meteor app using Meteor Up

Meteor Up is used to deploy a Meteor application to our server. Meteor is also referred to as mup. We install Meteor Up by running the command below on the terminal:

npm install --global mup

This command installs Meteor Up globally on our development machine. We must have a server with administrative privileges for us to be able to use Meteor Up.

Creating a Meteor Up project

To deploy our application using Meteor Up, we’ll need to perform the following steps:

  • cd app_folder
  • mkdir .deployment
  • cd
...