Skip to content

Commit

Permalink
update Headings in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tobikrs authored Jan 16, 2024
1 parent f04047a commit 3e77fc6
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,12 @@ Add a Studio export file (.xml) in any arbitary directory and add a folder named

Replace **<YOUR_STUDIO_EXPORT>** with the filename of your export file and execute the following command in this directory.

On Windows:
#### On Windows:
```
docker run -v "${pwd}/<YOUR_STUDIO_EXPORT>.xml:/irisrun/export.xml" -v "${pwd}/src:/irisrun/udl-export" --rm ghcr.io/hbtgmbh/xml-to-udl/converter:latest
```
On Linux:

#### On Linux:
```
./import-studio-export.sh --xml-file "$(pwd)/<YOUR_STUDIO_EXPORT>.xml" --source-folder "$(pwd)/src" --image ghcr.io/hbtgmbh/xml-to-udl/converter:latest
```
Expand All @@ -53,13 +54,13 @@ After the conversion is finished you should now see the generated sources under

If your project depends on web applications that are included in IRIS, you can include their configuration settings so that the converter takes them into account during the conversion process. To do this, [export the webapp configuration](https://docs.intersystems.com/iris20233/csp/documatic/%25CSP.Documatic.cls?LIBRARY=%25SYS&CLASSNAME=Security.Applications#Export) and save the xml-files in a separate folder, e.g. ``./webapps/``.

On Windows:
#### On Windows:
```
docker run -v "${pwd}/<YOUR_STUDIO_EXPORT>.xml:/irisrun/export.xml" -v "${pwd}/src:/irisrun/udl-export" -v "${pwd}/webapps:/webapplications" --rm ghcr.io/hbtgmbh/xml-to-udl/converter:latest
```
*Note that there are now three volumes mounted: 1. for your studio-export.xml-file, 2. your project source directory, 3. (optional) folder of your webapp config export files.*

On Linux:
#### On Linux:
```
./import-studio-export.sh --xml-file "$(pwd)/<YOUR_STUDIO_EXPORT>.xml" --source-folder "$(pwd)/src" --webapps-folder "$(pwd)/webapps" --image ghcr.io/hbtgmbh/xml-to-udl/converter:latest
```
Expand Down

0 comments on commit 3e77fc6

Please sign in to comment.