Using Godot for Healthcare Compliance Software

I’ve been exploring an interesting use case for Godot beyond games: building interfaces for healthcare compliance software. The idea is to use Godot primarily for the application and visualization layer, while keeping sensitive compliance data, authentication, permissions, audit logs, and backend services outside the engine.

For example, a healthcare compliance application could provide dashboards for:

  1. Environment of Care and facility inspections
  2. Digital compliance rounds
  3. Fire and life-safety checks
  4. Compliance tasks and corrective actions
  5. Inspection schedules and reminders
  6. Digital permits and documentation
  7. Emergency management workflows
  8. Audit trails and reporting

One area I find particularly interesting is visualization. Godot’s UI and rendering capabilities could potentially make complex facility information, inspection workflows, status indicators, and interactive dashboards easier to navigate.

For a healthcare compliance software application, the architecture could look something like this:
Godot application → Secure API → Healthcare compliance backend → Database

This also keeps the Godot client separated from the systems responsible for storing and processing sensitive information.

I’m calling this approach Using Godot for Healthcare Compliance Software, and I’m interested in exploring whether Godot can be a practical front-end/application layer for this type of enterprise software.

For anyone who has used Godot for non-game applications, I’d be interested in hearing your thoughts:

  1. Would you use Godot for a compliance dashboard?
  2. How would you structure the API/backend integration?
  3. Have you used Godot for enterprise or healthcare-related applications?
  4. What UI/UX considerations would you prioritize for inspection and compliance workflows?
1 Like

It seems to me that you are talking about public frontend information before a login. In that case I personally would not take all the overhead hit using Godot for this. I love Godot but pure CSS, JS and HTML can do a lot of things, as well as making updates and database tie-ins much faster.

I do think game engines have already done a lot of heavy lifting that the potential for doing non-games is a real thing, but IMHO, providing public frontend information before a login would not be a great solution. However I can imagine situations where it might be, like gamifying things like learning, but the frontend of a compliance dashboard? I don’t know. I suspect not.

Perhaps you could outline what you imagine the benefits the user might get from it? I mean you talk about it being pre-login, so non-authorised users, so what ‘compliance workflows’ are you imagining would be pre-login?

Godot is fine for general consumer-grade GUI applications, but I’d be very careful about using it in areas where very high reliability is required such as health care. I would only consider using Godot in cases where it doesn’t handle sensitive information, it isn’t safety-critical, and it doesn’t need to be audited (which would mean auditing Godot itself).