Skip to content

Architecture

The Wintro platform is built on top of Amazon Web Services for our core infrastructure, and uses Azure AI ServicesOpenAI Service for enhancing Wintro with LLM capabilities.

The following diagram depicts the high-level architecture with its main components:



image

  • Frontend: provides the user the web application HTML and scripts, hosted on Vercel.
  • Web application firewall (WAF): helps protect the application against denial of service and web attacks. Vercel Firewall is leveraged here to benefit from DDoS protection and WAF at AWS scale. This includes mitigation against OWASP Top 10 risks.
  • API Gateway: protects and monitors the backend API, both to endpoints of Vercel Functions and Supabase API endpoints. Incoming traffic is protected based on the OpenAPI specification of the backend APIs, meaning that only the specified routes are accepted by the gateway. Kong is used in combination with Supabase to host the database API Gateway.
  • Backend: provides the necessary information and search results. Serverless technology, Supabase and Vercel, are leveraged to host the microservices-oriented backend services.
  • Token Storage: stores integration-related tokens in a secure vault, Supabase Vault, with very limited access. Runtime secrets are stored in Vercel Environment Variables, encrypted at rest and visible to any user that has access to the Project.
  • Object Storage: stores objects in buckets on AWS S3 Storage that are not publicly accessible. Each tenant has its own storage bucket.
  • Relational Database: stores application-wide (e.g. users, workspaces) information and serves as the application backend database, hosted on AWS RDS and managed by Supabase.
  • AI Services: provide the LLM capabilities of our platform, for which we use Azure AI ServicesOpenAI Service.

The environment is hosted in the AWS Region eu-central-1, which is located in Frankfurt, Germany.

Multitenancy

The architecture is multi-tenant, meaning that a single instance of the software and its supporting infrastructure serves multiple customers. Please note that data privacy is respected at all times and is not affected by multi-tenancy.

Data isolation

In the multi-tenant architecture, the data is logically separated in the backend layer.

In general, the user is authenticated via the JSON Web Tokens (JWT) and data is restricted to the tenant scope.

For more information on how the data is stored, see Storage layers.

More information

For more information on how integrations are set up, see Integrations.

For more information on how data gets processed and stored, see Data Processing.

For more information on authentication and authorization, see Access Controls.