Design form locally in familiar editor

This article outlines the basic steps to start designing form locally

Create file.edn with form name in zrc/ forms directory

Example:

...zrc/ forms

allergies.edn
vitals.edn
....

Don't forget to import the created form into the forms.edn file so that the form is loaded after restarting the program.

Example

{ns forms
 import #{forms.vitals
          forms.phq2phq9
          forms.gad-7
          forms.allergies
          forms.ros
          forms.physical-exam
          forms.annual-wellness-visit}
 }

To design the form, it is necessary to describe some schemes

Go to this page to start designing a form.

In order not to describe the form from scratch, you can copy any suitable form from the templates and make a new form based on it

To debug & test form, it is necessary to open Aidbox console in browser

  • Open http://localhost:8080/ , using login / passwod - admin / admin

  • Go to forms by pressing the button Forms (or by visiting http://localhost:8080/ui/sdc )

  • Find the created form on the Forms & Workflows page

  • Open the created form in Aidbox editor by pressing on the form

Any changes in Aidbox editor in browser will be saved to the local file system in your repository

Last updated

Change request #2416: