I'm using the Fluid draft-js example here: https://github.com/microsoft/FluidExamples/tree/main/draft-js
I know I can run the app locally by just running npm start
or just the server by using npm start:server
But how can I deploy this app (server) to a production environment? (I'm sorry if this is a stupid question). Should I just upload the repository to a node environment and run the commands? Should I try to make a docker image?
Any ideas?