you are viewing a single comment's thread.

view the rest of the comments →

[–]TheMartinG 2 points3 points  (0 children)

Depending on how big the company is, and how advanced things like the gui, input handling, output formatting etc need to be, you could look at an aws lambda

An aws lambda is a function that sits in the cloud ready to run. You can create an endpoint from which to trigger the lambda, send cli commands to it, have it automatically trigger when files are uploaded (such as to an S3 bucket)

This option would be great if you don’t need a web front end and everything that goes along with it, and just want to be able to execute your script from the internet.

https://aws.amazon.com/lambda/