Deployment on AWS

We need to host the frontity on either an EC2 instance or on AWS Lambda. We have not found any firm document for that. Can you provide any support or give a document for the same?

Thank You.

@HardikDevani I don’t know how EC2 or AWS Lambda works, but you should know that the Frontity server can be imported like this:

const frontity = require("./build/server");

server((req, res) => frontity.default(req, res));

Knowing that and following the hosting service docs, I think you should be able to find a solution.

2 Likes