Skip to content

You are reading the documentation for version v1.15.0.

Documentation for the latest version.

Setting up Glossaries

Glossaries are files that contain lists of terms, their definitions and other attributes.

For Contextive to find your glossary file, it must match the pattern *.glossary.yml. You can name the prefix whatever you like, so project.glossary.yml and module.glossary.yml are both valid filenames, but module-glossary.yml is not.

Glossary Location

The first thing to decide is how many of these files you need and where to put them.

The following sections explore common patterns for where to place your glossary files.

Terms relevant for the whole repository

If the terms in a file are useful for all files in the repository, then you should put the glossary file in the root.

  • Directoryrepository
    • projectName.glossary.yml <— a glossary for the whole repository
    • README.md
    • Directoryfrontend
      • Directorycomponents
        • SubmitOrder.ts
    • Directorybackend
      • Directorydomain
        • Order.cs

In the example above, if projectName.glossary.yml contains a definition for the term Order, then that definition will be used when editing README.md, frontend\Components\SubmitOrder.ts and backend\domain\Order.cs.

Different terms relevant in different repositories

This is fundamentally the same as the previous pattern, but is described to be explicit for teams who are using multiple repositories.

For this approach to work, each repository must deal with different domain concepts so that the terms useful in one repository are irrelevant in the others, and visa versa.

This pattern is particularly useful if each repository aligns with the concept of a Bounded Context from Domain-Driven Design.

  • Directoryshipping-repository
    • shipping.glossary.yml <— a glossary only for shipping
    • Directorysrc
      • Order.cs
  • Directorypayments-repository
    • payments.glossary.yml <— a glossary only for payments
    • Directorysrc
      • Order.cs

In this case, shipping.glossary.yml might define Order as A set of parcels with a common delivery destination.. This definition will be shown when working on in the shipping repository.

payments.glossary.yml might define Order as An amount to be charged to the customer and the payment method to charge. This definition will be shown when working in the payments repository.

Terms relevant only in a subfolder of the repository

If the terms in a file are useful only in a subfolder, put the glossary file in the top-most folder that encompasses those relevant files.

For example, if you are building a ‘modular monolith’ in a monorepo, you might have your modules in separate folders, in which case you should put definitions relevant to each module in that module’s folder, like so:

  • Directoryrepository
    • README.md
    • Directoryshipping
      • shipping.glossary.yml <— a glossary only for shipping
      • Directorysrc
        • Order.cs
    • Directorypayments
      • payments.glossary.yml <— a glossary only for payments
      • Directorysrc
        • Order.cs

Assuming the same definitions as before, where shipping.glossary.yml defines Order as A set of parcels with a common delivery destination. and payments.glossary.yml defines Order as An amount to be charged to the customer and the payment method to charge., then:

  • When working on /shipping/src/Order.cs, hovering over the word Order will show A set of parcels with a common delivery destination.
  • When working on /payments/src/Order.cs, hovering over the word Order will show An amount to be charged to the customer and the payment method to charge.

This pattern is particularly useful if the modules in your modular monolith align with the concept of a Bounded Context from Domain-Driven Design.

Terms relevant across multiple repositories

If you have multiple repositories that would benefit from access to the same terms, then it’s recommended to define the terms in one repository and to construct a system for copying them into the other repositories.

Multi-root workspaces

Some IDEs (e.g. VsCode) support multi-root workspaces.

Contextive will use glossary files based on their location on disk relative to the files that are being edited and will not consider the multi-root structure.

However, it will only discover glossaries by searching from each of the roots, so depending on the disk layout of the roots, terms may or may not be used across multiple roots.

In this approach, it’s recommended to use something like Terms relevant only in a subfolder of the repository, where each subfolder is ‘root’ in the multi-root workspace.

Bounded Contexts

Once you have determined where to put your glossary files, the next thing is to define a Bounded Context in each file.

In Domain-Driven Design, a Bounded Context is a logical boundary around a model of some portion of the domain. It’s quite common for different Bounded Contexts to evolve their own unique ‘languages’ or ‘dialects’.

Defining a Bounded Context

The top level of the *.glossary.yml file is a list of bounded contexts. The key in the yml file is contexts. A file with a single context looks like:

shipping.glossary.yml
contexts:
- name: Shipping
domainVisionStatement: To manage the shipping of orders to customers.
terms:
- name: Order
definition: A set of parcels with a common delivery destination.
- % other terms %
...

Both the name and domainVisionStatement are optional, but if supplied, they will be shown at the top of the hover panel to provide context for the terms.

Shipping Context Headers

If those fields are undefined, the context can be as simple as:

shipping.glossary.yml
contexts:
- terms:
- name: Order
definition: A set of parcels with a common delivery destination.
- % other terms %
...

Which would just show the term definition:

Shipping Context Without Headers

See defining terminology for details on defining terms.

Following the patterns above, it is recommended to have a single context per file, but multiple contexts per file is supported.

Glossary File Template

When getting started, it could be helpful to copy the default glossary file template which contains all possible fields and is used to define the terms used in the glossary file itself.

It can be used as a starting point to edit and amend to incorporate your contexts and define your terms.

Multiple Bounded Contexts in a Glossary File

Early versions of Contextive used a single glossary file with all contexts in it, and for backwards compatibility reasons, this is still supported.

To scope the context to a particular portion of the repository, as described in Terms relevant only in a subfolder of the repository, then each context can have a list of path globs supplied and the terms in that context will only be shown for files that match the path glob.

For example, to achieve the same outcome, you could have a structure like:

  • Directoryrepository
    • project.glossary.yml a glossary with all contexts and terms
    • README.md
    • Directoryshipping
      • Directorysrc
        • Order.cs
    • Directorypayments
      • Directorysrc
        • Order.cs

And the contexts could be defined like so:

project.glossary.yml
contexts:
- name: Shipping
domainVisionStatement: To manage the shipping of orders to customers.
paths:
- shipping
terms:
- % list of terms in the shipping context
- name: Payments
domainVisionStatement: To manage handling payments, refunds & financial reconciliations for orders.
paths:
- payments
terms:
- * list of terms in the payments context