chris-visser / meteor-vue-admin

A fully functional Meteor + Vue admin system with Meteor account integration.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to deploy it

95zz opened this issue · comments

commented

How to deploy it

Depending on your cloud, you can simply build it into a plain node.js app. In your root run:

npm run build

This will create a bundle folder with a plain nodejs app. Set the ROOT_URL to the url of your site and set the MONGO_URL variable that links to your mongo database and that's it. You can simply follow the Meteor guide on deployment:

https://guide.meteor.com/deployment.html

commented

thank you