Data privacy

Working with databases is a strong responsibility. We do everything possible to keep your data and secrets safe. In fact, coming from Doctolib, it was a major requirement and Azimutt was built from the ground up with this in mind, and we improved with any given feedback. If you see any possible improvement let us know.

Architecture #

Azimutt architecture is heavily frontend focused in order to keep almost all your data on your computer, and even Azimutt can't assess it. In its early days, there wasn't even a server 🙃

All the business data are stored in a project, which is a JSON object with 3 main parts: the sources (with their schemas), the layouts (with everything shown inside) and the schema documentation.

When you create a project, it lives in "draft" status, either in-memory or saved in your browser IndexedDB.
When you save a project for the first time, you are asked if you want to save it locally (keeping it in your browser IndexedDB) or remotely (storing it in the server object store).

All the processing (parsing files) is made in the browser, nothing is sent to any server.
For the database connection, it's different as browsers can't connect to databases, that's why we added the Gateway component and made it easy to launch it locally, keeping again everything local to the user machine.

Here is an overview of the architecture: Azimutt architecture

Database URIs #

Database URIs are, of course, the most sensitive data handled by Azimutt. That's why we have a special treatment for them, allowing you to choose where to store them:

  • In the browser (default): stored encrypted separately in the browser IndexedDB. Only you can access it, and you won't have to enter it every time.
  • In the project: anyone having access to the project can access it. Useful to share less sensitive URIs with co-workers, like development databases.
  • In memory: not stored anywhere, just kept in memory. This is the safest, but you will have to enter it at each reload (~ working session).

Hosting #

With all this, even using our cloud service is quite safe.
Still, if you prefer having Azimutt on-premise, have a look to installation section or contact us.