When trying to deploy a newly created Meteor (0.9) app I always get this error message in the Modulus logs:
module.js:340
throw err;
^
Error: Cannot find module 'fibers'
at Function.Module._resolveFilename (module.js:338:15)
at…
I'm a bit curious if Meteor Up (or other Meteor app deploying processes like Modulus) do anything fancy compared to copying over your Meteor application, starting a tmux session, and just running meteor to start your application on your server.…
When I run modulus deploy with a Meteor app, it prints to the console WARNING: The output directory is under your source tree.
What does this warning mean?
Hi I am currently using Modulus.io to host my meteor application, but it keep crashing.
it is my first time doing hosting, so I can not very good at reading the Log, can someone tell me what is wrong ?
at…
I've deployed a Meteor app on modulus.io and would like to set up SSL with Let's Encrypt.
According to Let's Encrypt's documentation, it seems that you need access to the server's command line to install their client. But, as far as I know, there's…
I have a production Meteor app (v0.8.3). It uses the PayPal IPN system, with a server-side route for the IPN (using Iron Router). I was hosting it with Webfaction and the IPN process worked well.
Router.map(function () {
this.route('ipn', {
…
Production and development apps currently deployed to Modulus need to be deployed to Galaxy, and CNAMES cut over.
What is the correct sequence of steps to do this without disturbing existing users?
What are the steps relevant to binary NPM packages,…
Can anyone recommend a good setup script to deploy to Modulus after passing tests?
Right now I'm using:
nvm install 0.10.28
nvm use 0.10.28
curl -o meteor_install_script.sh https://install.meteor.com/
chmod +x meteor_install_script.sh
sed -i "s/type…
I find that whenever I modulus deploy my app, after it has uploaded to apply the new changes the app throws some connection errors in the console due to it being restarted.
Is there a way to update deployed meteor apps without having the entire app…
I have a meteor application hosted on modulus.
Modulus has an api here: https://api.modulus.io/
The API code is hosted here: https://github.com/onmodulus/modulus-cli/blob/master/lib/librarian/librarian.js#L361
I want to save a domain to one of my…
I have an https Meteor webapp hosted on modulus.io. Following the advice here I have a server method:
Meteor.methods({
printIP: function() {
return this.connection.clientAddress;
}
});
I call this from my browser console on the live…
Hi I'm very confused and probably have made a stupid mistake, but for the life of me I can't get my Meteorjs app to work when deployed to Modulus.
On the local host and deployed to Meteor (*.meteor.com) it works just fine, however when deployed to…
Modulus offers the option to deploy from the current directory or from a specified path.
My file structure is:
package.json
bower.json
src (where the app is coded)
dist (where gulp puts the ready app)
dozens of other folder like e2e, seed, gulp,…
Trying to get my head around websockets and xhr in a Meteor -> Modulus context. I've been noticing lengthy response times on occasion apparently due to websockets falling back to xhr when it can't connect...I'm trying to diagnose why.
Production app…