Is it possible to use fly.io to power a use case like codesandbox?

From what I’ve seen, deploying a basic app takes minutes and new “file change” takes dozens of seconds to deploy.

Contrasted with the ability to save and see the change reflected immediately, using fly.io seems prohibitively slow!

Is there a way fly.io could power a similar use case?

It seems the machines API is more suited for this use case. Working with the Machines API · Fly Docs

  • Each fly application has many machines. I can create a machine using the REST API
  • Need to assign an IP address to the application using the fly GraphQL API
  • and then I can interact with the machines through the rest API
1 Like