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?

gefragt vor einem Monat121 Aufrufe
2 Antworten
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
beantwortet vor einem Monat
  • 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
EXPERTE
beantwortet vor einem Monat

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen