meteor-up

Memory issue with meteor up (mup) on Digital Ocean

走远了吗. 提交于 2019-12-01 01:02:57
I couldn't find existing posts related to my issue. On a Digital Ocean Droplet, mup setup went fine, but when I try to deploy, I get the following error. Any ideas? Thanks! root@ts:~/ts-deploy# mup deploy Meteor Up: Production Quality Meteor Deployments Building Started: /root/TS/ Bundling Error: code=137, error: -------------------STDOUT------------------- Figuring out the best package versions to use. This may take a moment. -------------------STDERR------------------- bash: line 1: 31217 Killed meteor build --directory /tmp/dc37af3e-eca0-4a19-bf1a-d6d38bb8f517 Below are the logs. node -v

Memory issue with meteor up (mup) on Digital Ocean

。_饼干妹妹 提交于 2019-11-30 19:04:18
问题 I couldn't find existing posts related to my issue. On a Digital Ocean Droplet, mup setup went fine, but when I try to deploy, I get the following error. Any ideas? Thanks! root@ts:~/ts-deploy# mup deploy Meteor Up: Production Quality Meteor Deployments Building Started: /root/TS/ Bundling Error: code=137, error: -------------------STDOUT------------------- Figuring out the best package versions to use. This may take a moment. -------------------STDERR------------------- bash: line 1: 31217

Meteor Up Docker and Graphicsmagick

半城伤御伤魂 提交于 2019-11-30 03:17:44
问题 I'm looking for how to install Graphicsmagick at Meteor Up Docker. I found this solution (Access binaries inside docker) but I couldn't make work, where do I put those lines at start.sh ? meteorDockerId=docker ps | grep meteorhacks/meteord:base | awk '{print $1}' docker exec $meteorDockerId apt-get install graphicsmagick -y That's my start.sh : #!/bin/bash APPNAME=instagatas APP_PATH=/opt/$APPNAME BUNDLE_PATH=$APP_PATH/current ENV_FILE=$APP_PATH/config/env.list PORT=80 USE_LOCAL_MONGO=0 #

mup deploy killed on DO droplet but no errors in logs :(

北战南征 提交于 2019-11-28 11:49:22
问题 Even just redeploying a previously successfully deployed app doesn't work. I monitored mup logs -f on a separate terminal while deploying, but nothing ever showed up there. Looks like it doesn't even get to the actual deploy step. I have Node 0.10.31 and Meteor 1.0. Is anyone else having this problem or know how to tackle it? ~# mup deploy Meteor Up: Production Quality Meteor Deployments ------------------------------------------------ Building Started: /root/TS Bundling Error: code=137,

Meteor Up deployment, can't use meteor mongo --url

你离开我真会死。 提交于 2019-11-28 07:46:05
I've recently deployed my Meteor app to a Digital Ocean droplet running Ubuntu 14.04 x32. I used Meteor Up with this mup.json file: { // Server authentication info "servers": [ { "host": "mycorrecthostname", "username": "root", "password": "mycorrectpassword" } ], // Install MongoDB in the server, does not destroy local MongoDB on future setup "setupMongo": true, // WARNING: Node.js is required! Only skip if you already have Node.js installed on server. "setupNode": true, // WARNING: If nodeVersion omitted will setup 0.10.25 by default. Do not use v, only version number. "nodeVersion": "0.10

Meteor and the /private directory

只愿长相守 提交于 2019-11-27 18:58:20
问题 I'm using the /private directory in Meteor 1.0.3 at the moment to store and serve up pdf documents to the browser. As an example, I have a folder structure like so: /application-name /private /files /users /user-name /pdf-file1.pdf I have a template with a button click event. In this event I make a couple of calls to Meteor methods and finally a server side Iron Router go('render-pdf') method. In these Meteor methods I use fs node.js to: (1) check if the /user-name directory exists, and if it

Meteor Up deployment, can't use meteor mongo --url

拈花ヽ惹草 提交于 2019-11-27 05:45:45
问题 I've recently deployed my Meteor app to a Digital Ocean droplet running Ubuntu 14.04 x32. I used Meteor Up with this mup.json file: { // Server authentication info "servers": [ { "host": "mycorrecthostname", "username": "root", "password": "mycorrectpassword" } ], // Install MongoDB in the server, does not destroy local MongoDB on future setup "setupMongo": true, // WARNING: Node.js is required! Only skip if you already have Node.js installed on server. "setupNode": true, // WARNING: If