snup
June 29, 2016, 9:46am
1
I use Meteor since I use the Wekan board. Every day I start the app using
meteor
or
meteor run
Every day again, the build system looks for updates of meteor, runs some build processes. i do not want all this however, just want to RUN the application. How can I avoid the frequent unnecessary BUILDs ?
thank you
Ironically, the answer is that you have to build the application: http://docs.meteor.com/commandline.html#meteorbuild
Once built, you then deploy it into production. At that point it’s just a standalone node app.
1 Like
snup
June 29, 2016, 11:01am
3
thx you for your prompt reply!
did a build, now trying to host it on windows.
snup
June 29, 2016, 11:07am
4
no luck on windows - node module fibers does not install on windows. so currently i can run the application in developer mode but not the built one.
where should i look to solve this ?
You may find this useful:
The purpose of this article is to help people successfully deploy a Meteor application to a Windows environment. It appears that there isn’t really a good “definitive” guide to the process – and although this article doesn’t purport to be definitive either, it will give, I hope, enough real world experience to at least let semi-knowledgable Windows people to get something up and running as a start. If I, a total Windows newbie, can get something up and running than anyone can.
I…