why does Netlify refuse to deploy my website? - netlify

i am trying to deploy a web site on Netlify. unfortunately i received this
stan: failed connecting to 'nats-aws-jfk'
what does that mean, and what to do?

There is currently an ongoing incident on Netlify. Builds may stuck a while because of this.
Incident Report: https://www.netlifystatus.com/incidents/92wdj5gyqdcn

Related

my express js site does not go live on netlify, heroku or the others?

I am trying to deploy this repo online, it works fine locally in local host 3000 but unable to display online when deployed via netlify etc.
https://github.com/oshanedesign/pet-store
This is th error message i get on netlify
I have tried redeploying on netlify, also tried deploying on another site such as heroku, vercel etc did not work there either. But app runs perfectly locally
This is the link to the github repo https://github.com/oshanedesign/pet-store
.htaccess rules don’t work on Netlify.
There is no need to specify a 404 document. Having a 404.html at the site root will automatically show that file.
Netlify does not support PHP at runtime, only during the build process. Netlify is designed for Jamstack sites

Material-ui Official SSR example not working in production servers

I deployed the official material-ui ssr example to Microsoft Azure, it doesn't work. I also deployed it to Heroku, it still doesn't work. On my local machine and on codesandbox , everything looks good. I don't know what I'm missing.
UPDATE
You can choose docker when you create webapp services. I think it will help you solve the issue.
PRIVIOUS
I think this project has some bug in it.
You can raise a support on azure portal, or submit a issue on github.
I have try to use many ways to deploy ssr project.
Continuous deployment to Azure App Service [Failed]
FTP, then run start command. [Failed]
Use VSCode to publish. [Failed]
Paste zip file into kudu. [Failed]
After all the attempts, I guess that a certain command of the project may take up a lot of resources, so this project has potential bugs, and the azure team can assist in finding the cause of the deployment failure.
This is my error msg.

Reaction ecommerce deployement in heroku

I linked my GitHub reaction ecommerce to heroku,but it shows an application error while loading the deployed app.Is there any change in configuration or settings in order to make it working in heroku? Thanks.

Hosting my MEAN stack web app on github pages

I have a project here that is on github. I created a gh-pages branch to make it hosted on github pages. The link they gave me to my hosted site is here.
I am pretty new to web apps and especially new to MEAN stack web apps. My question is - how can I access my web app now that it is hosted via github? Obviously the hosted link gives a 404 error because I don't have an index.html file in the root of the project. The "html" I have in the project is in the views folder and has an "ejs" file extension (index.ejs).
To run this app on my local machine I start an npm server:
npm start
Then I navigate to http://localhost:3000/#/home in a browser to see the app.
Is it even possible to host this app on github pages? Do I need to modify my project in some way to make it work? Also - I know I will have to change the mongoose database pointer for the database portion to work. Any pointers in the right direction would be greatly appreciated!
Github does not host nodejs instances.
If you want to host a it on GitHub pages you can follow these steps:
Separate Angular front end with node back end API.
Host your Angular front end to GitHub pages.
Then host your node back end to some cloud hosting. Make sure you have CORS enabled. It will work as a REST API.
Now use the REST API end points to wire up the the whole app.

With Windows Azure, can I deploy a node.js server using Dropbox?

There are several tutorials on Azure showing how to deploy a node.js server using git. Azure has a nifty feature where you can link a Dropbox folder to an Azure web site for very simple deployments. Works awesome for websites, but I was hoping it might work for node.js deployments as well.
It doesn't seem to work- the deployment process goes fine, but navigating to the URL of the node.js deployment produces this error:
The page cannot be displayed because an internal server error has occurred.
Anyone know if it's possible to deploy a node.js server to Windows Azure via Dropbox?
Many thanks-
UPDATE-
Just ran through the deployment logs and found this line:
The package.json file is not present.
The node.js application will run with the default node.js version 0.6.20.
Perhaps that it explains my problem?
from the console and folder type "npm init" to generate package.json

Resources