Run express server web application on Amplify?

0

Hi Everyone,

I would like to migrate our existing Vue/Node web application from Heroku to Amplify. The app runs on an express server (i.e., "start": "node server.js" in the package.json). But it seems that Amplify is not starting the server, and instead using it's own web server. Is it possible to configure Amplify to use the express server instead?

已提问 1 个月前121 查看次数
2 回答
0

Yes, it's possible to deploy an Express server-based web application on AWS Amplify. Amplify primarily supports frontend web applications and serverless backends, but you can still deploy server-side applications like Express servers with a little bit of modifications.

profile picture
已回答 1 个月前
  • Hi Bhagavan, thanks for your reply. To be clear, I am talking about a frontend web application, but in our case it uses an express server. Do you have any links to tutorials on how to do this? I've seen some documentation on SSR apps, but not sure they're relevant.

0

Deploying a Nuxt 3 web app (Is that it ?) from any repo using Amplify involves these steps:

  1. Initialize Amplify and add hosting.
amplify init
amplify add hosting

  1. Configure Amplify hosting to point to your Express server code in deploy-manifest.json.
  2. Connect your Git repo in the Amplify console.
  3. Add a post-build script in package.json to copy build artifacts to .amplify-hosting.
"scripts": {
  "build": "nuxt build",
  "postbuild": "cp -r dist/. .amplify-hosting/"
}
  1. Commit and push code to trigger Amplify deployment.
  2. Access your app at the default URL provided. Amplify handles backend infrastructure.
profile picture
专家
已回答 1 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则