### Output Template Examples Source: https://github.com/folio-org/docs/blob/sunflower/content/en/docs/Settings/Settings_service_interaction/settings_service_interaction.md Examples of output templates demonstrating the use of ${generated_number}, format specifiers, and prefixes/suffixes. The 'Format' column specifies padding, and 'Display of number' shows the resulting sequence. ```text 2025-ABC ${generated_number} ``` ```text A1/${generated_number}-B ``` ```text $ABC ${generated_number} ``` ```text 1 N ${generated_number}: 2013 ``` ```text ${generated_number}-${checksum} ``` ```text A${generated_number}${checksum} ``` ```text 05${generated_number}01${checksum} ``` -------------------------------- ### Start Edge Module Containers Source: https://github.com/folio-org/docs/blob/sunflower/content/en/docs/Getting started/Installation/customizations.md Navigate to the edge module directory and start the containers using docker-compose. ```bash cd /etc/folio/edge sudo docker-compose up -d ``` -------------------------------- ### Template Token Examples Source: https://github.com/folio-org/docs/blob/sunflower/content/en/docs/Acquisitions/Serials/_index.md Tokens used in templates to insert values from chronology and enumeration labels. Ensure the label names (e.g., chronology1, enumeration1) match your setup. ```text {{chronology1.weekday}} ``` ```text {{chronology1.monthDay}} ``` ```text {{chronology1.month}} ``` ```text {{chronology1.year}} ``` ```text {{enumeration1.level1}} ``` ```text {{enumeration1.level2}} ``` ```text {{enumeration1.leveln}} ``` ```text {{enumeration1}} ``` -------------------------------- ### Serve FOLIO Docs with Docker Source: https://github.com/folio-org/docs/blob/sunflower/README.md Locally serve the FOLIO documentation site using Docker. Ensure Docker is installed and run this command from the docs directory. ```bash docker run --rm -it -v $(pwd):/src -p 1313:1313 klakegg/hugo:ext-alpine server ``` -------------------------------- ### Example Template for Serial Publication Source: https://github.com/folio-org/docs/blob/sunflower/content/en/docs/Acquisitions/Serials/_index.md An example of a template string that combines enumeration and chronology tokens to format a serial publication label. This specific example formats 'Volume X, number Y (YYYY)'. ```text Volume {{enumeration1.level1}}, number {{enumeration1.level2}} ({{chronology1.year}}) ``` -------------------------------- ### Initialize Git Submodules Source: https://github.com/folio-org/docs/blob/sunflower/README.md Run this command to initialize and update Git submodules before building the Hugo site for the first time. ```bash git submodule update --init --recursive ``` -------------------------------- ### Search Inventory - Contributor Source: https://context7.com/folio-org/docs/llms.txt Example of a CQL query to search for items by contributor name. ```cql contributors all "Smith" ```