Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 1.06 KB

File metadata and controls

25 lines (20 loc) · 1.06 KB

Developing

The COA framework consists of two sub-packages which each run a server. There is a backend API server, and a frontend server that serves React code.

Documentation Contents

Key Technologies

  • NestJS powers the backend API in the backend sub-package.
  • TypeORM provides the database interface, and manages migrations.
  • We encourage use of GraphQL for your API. NestJS provides a GraphQL server framework.
  • The frontend uses Apollo Client to fetch data from the GraphQL API.
  • Next.js servers the frontend, and provides routing, server-side rendering, and other features.