{% extends "base.html" %} {% block content %}

IG Configuration Generator

Select the Implementation Guides you want to load into Local FHIR for validation. This will generate the YAML configuration required for the application.yaml file.

Select IGs
{{ form.hidden_tag() }}
{% for choice in form.igs.choices %}
{% endfor %}
{{ form.generate_yaml(class="btn btn-primary") }}
{% if yaml_output %}
Generated application.yaml Excerpt

Copy the following configuration block and paste it into the `hapi.fhir` section of your HAPI server's application.yaml file.

{{ yaml_output }}
Important: After updating the application.yaml file, you must **restart your HAPI server** for the changes to take effect.
{% endif %}
{% endblock %}