I am trying to deploy the meteor application on galaxy.
These are the steps i am doing:
set DEPLOY_HOSTNAME=galaxy.meteor.com
meteor deploy utmonthlyres.meteorapp.com --settings ./settings.json
Error:
Talking to Galaxy servers at: https://galaxy.meteor.com
Error deploying application: Server error (please try again later)
Related
I got Internal Server Error after starting PM2 on my servers.
But when I did npm run start, the app works normally. How is that possible?
While deploying my NextJS app to vercel, I get the following error-
Image to the error console
When I create a yarn.lock file using yarn package manager, the app deploys successfully. But unlike the package-lock.json file created by npm, isn't yarn.lock useless while deployment as well?
When running a meteor.js app via meteor run --verbose android I get this error:
Failed to install 'cordova-plugin-whitelist':Cannot find plugin.xml
for plugin "cordova-plugin-whitelist". Please try adding it again.
I've tried the fix suggested here (installed cordova plugin via add cordova-plugin-whitelist in the folder .meteor/local/cordova-build) and this got the emulator started but then this error appeared:
Execution failed for task ':processDebugResources'.
com.android.ide.common.process.ProcessException: Failed to execute aapt
I found some information about this one on the issues gitHub site for meteor, but I'm at a loss now for what to do.
These errors (not surprisingly) also cause meteor-up deployment to fail. I
tried adding buildOptions: { "serverOnly": true } to the mup.json file per the mup docs but this failed to stop meteor from building the cordova architecture. Is there is a build setting or flag for mup deploy or meteor build so that it doesn't try to build the web.cordova architecture at all?
I'm attempting to deploy a meteor app to Digital Ocean and Compose.io and am getting this error when I run mup deploy:
build: You're not in a Meteor project directory.
I am in the meteor project directory.
For those running into this issue, make sure the "app" parameter is correctly set to the location of your meteor app. This solved the problem.
I'm trying to deploy my app on my server, but whenever I navigate to localhost:3000, nothing shows up.
What's I've done
meteor create myapp
cd myapp
meteor
I'm not getting anything on my server.