Documentation for Flight Controller's Events
Flight Controller Event Catalog
- Event Domains (EG. Account, Backup, Guardrail):
domains/
- Domain Events (EG. AccountCreated, AccountRequested):
domains/${DOMAIN}/events/
- Event Services (Account Vending Machine, Flight Controller):
services/
Making changes to the Event Catalog Documentation is pretty straight forward. You will need to add and update the relevant files within the 3 folders listed above. See others for examples.
More info in the official Event Catalog documentation.
make docs_run
. This can be useful to confirm your changes.
make docs_install
(npm install) Will install all NPM requirementsmake docs_build
(npm install & npm run build) Will build the Event Catalog and output to the folderdocs/out
. This is used to confirm you changes are valid.make docs_run
(npm install & npm run build & npm run dev) Will run a local dev instance of the site, so you can see you changes.