You are viewing the documentation for Blueriq 17. Documentation for other versions is available in our documentation directory.
The runtime can run in production and development mode. While using the development mode you can start a project via the development dashboard. While using production mode you can start a project via a ( user friendly ) url. After installation the runtime will contain some example projects. You can add projects by configuring a connection to Studio or add project exports
Start a project via the development dashboard
The development plugin must be installed before you can use this dashboard. Once the plugin is installed navigate to http://HOSTNAME:PORT/ the following dashboard should appear:
To start a project
- Select the project
- Select the branch
- Select the flow
- Select the language
- Select the UI (default is MVC)
- Select the theme (default is forms)
- Press start
A new tab or window should appear with the selected projects. The development dashboard has many more features which you can read in the following article: Using the development dashboard [editor]
Start a project via a URL
Java runtime
In production mode you can start a project via the following URL http://YOURHOSTNAME:PORTNUMBER/server/start?project=YOURPROJECT?flow=FLOWNAME.
The following table describes all required and optional parameters that you can use to start a project.
Parameter | Required | Description |
---|---|---|
project | Yes | the name of the project: SOURCE-PROJECTNAME for example: export-dcm or studio-dcm. |
flow | Yes | the name of the exposed flow that is started. |
version | No | Combination of version and branch: for example 0.0-Trunk. The version number is deprecated by default this number is always 0.0. If no version number is entered the runtime will automatically select a release using a numerical sorting algorithm. |
languageCode | No | If no language code is selected, the default language will be started. |
ui | No | The UI that should be used to render the page model. By default the MVC styling is selected. |
theme | No | The Theme that should be used to render the page model. By default the Forms styling is selected. |
User-friendly URL
To create more user friendly URL's you can also define a shortcut.
.NET runtime
In production mode you can start a project via the following URL: http://YOURHOSTNAME:PORTNUMBER/development/Flow/Start?Application=YOURPROJECT?Flow=FLOWNAME
The following table describes all required and optional parameters that you can use to start a project
Parameter | Required | Description |
---|---|---|
Application | Yes | The name of the project: SOURCE-PROJECTNAME for example: export-dcm or studio-dcm |
Flow | Yes | The name of the exposed flow that is started |
Version | No | Combination of version and branch: for example 0.0-Trunk. The version number is deprecated by default this number is always 0.0. If no version number is entered the runtime will automatically select a release using a numerical sorting algorithm. |
Language | No | If no language code is selected, the default language will be started |
UI | No | The UI that should be used to render the page model. By default the MVC styling is selected |
Theme | No | The Theme that should be used to render the page model. By default the Forms styling is selected |