Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 1.43 KB

components.md

File metadata and controls

42 lines (31 loc) · 1.43 KB
Error in user YAML: (<unknown>): could not find expected ':' while scanning a simple key at line 2 column 1
---
title: Workflows and Components
{{ .EditURL }}
---

import FrontendWorkflow from '@site/src/components/FrontendWorkflow'; import BackendComponent from '@site/src/components/BackendComponent';

For details on how each type of component integrates with Clutch please visit the Architecture reference.

Frontend

Frontend workflows are written using React and registered and configured in the frontend config file at build time.

Workflow Packages

{{ range $p := .WorkflowPackages }} <FrontendWorkflow packageName="{{ $p.PackageName }}" to="{{ $p.URL}}" workflows={ {{ toJson $p.Workflows | }} } /> {{ end }}

Backend

Backend components are written in Go and registered and configured in the backend config file at runtime.

Services

{{ range $c := .Services }} {{ end }}

Modules

{{ range $c := .Modules }} {{ end }}

Resolvers

{{ range $c := .Resolvers }} {{ end }}

Middleware

{{ range $c := .Middleware }} {{ end }}