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?
Related
I'm trying to deploy a nuxt app to an nginx server on a Debian machine, but when I run npm run build, it invariably ends up with the error 36619 killed at about 90% of the client build process after taking a lot longer than on my regular system.
Nginx version : 1.18.0
Linux version : Debian 11
Nuxt version : 2.15.8
Found out why, the server didn't have enough ram
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)
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.
How can I configure webstorm to debug meteor server files?
I got it working with PHPStorm. See: WEB-6264 I did have to make a slight modification to the configuration though.
Install NodeJS plugin from the Plugin Repository
Create a Node.js Remote Debug run configuration and fill in the fields:
Host : 127.0.0.1 (host of meteor app running, leave untouched if meteor is running on your local machine)
Debug port : 5858
Local directory : /path/to/your/meteor/project
Remote path : app
NODE_OPTIONS="--debug" meteor