Reputation: 13
I am using mup
to deploy my Meteor app to AWS, but I can't find a .meteor
folder on the server.
How I can find my meteor folder on AWS VPC?
Upvotes: 1
Views: 512
Reputation: 432
Mup classic builds your meteor application and deploy it on your server on /opt//app
Mup is an abandoned project, that's why I forked it and built yamup (Yet Another Meteor Up), that you can find at https://github.com/bordalix/yamup
It works with the latest versions of Meteor and with Ubuntu up until 16.
Upvotes: 1
Reputation: 16478
Once you build your Meteor application, as mup
(meteor-up) does, a bundle is created, and this bundle is a normal Node.js application.
Therefore, there is no .meteor
directory within it, as well as all of the other development-time tools from the meteor
CLI.
Upvotes: 3