Chapter 10. Deploying Our App
Our app is now ready to be deployed. In this chapter, we will see how we can deploy our app on different servers to make it public and show the world what we built.
Meteor makes it easy to deploy applications on its own server infrastructure. It's free and quick to do, but probably not the right place for a production environment. Therefore, we will take a look at manual deployment as well as some great tools built to deploy on any Node.js server.
In this chapter, we will cover the following topics:
Registering a Meteor developer account
Deploying on Meteor's own server infrastructure
Bundling and deploying Meteor manually
Deploying using Demeteorizer
Deploying using Meteor Up
Note
If you want to have the full app we've built in this book to deploy, download the code from the book's web page at https://www.packtpub.com/books/content/support/17713 or from the GitHub repository at https://github.com/frozeman/book-building-single-page-web-apps-with-meteor/tree/chapter10...