Skip to content

Commit 6f8fc4b

Browse files
authored
document how to execute this project
1 parent 990f3b2 commit 6f8fc4b

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

README.md

+21
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,24 @@ Open a question at the issue board of this GitHub repositiory.
1616

1717
## How to learn Robot Framework
1818
The best way to learn Robot Framework is by writing your own first Test Case or Task. You can find starting material here: https://robotframework.org/#learning
19+
20+
# Local Setup
21+
There are many ways to set up Camunda Platform, as there are many ways to set up Robot Framework.
22+
23+
## Camunda Platform Run
24+
I recommend using the [official docker image] of the powerful community edition by running:
25+
```
26+
docker run -d --name camunda -p 8080:8080 camunda/camunda-bpm-platform:latest
27+
```
28+
You access your local Camunda platform on http://localhost:8080 . Username: `demo` - Password: `demo`
29+
30+
## Install Robotframework
31+
You require Python 3 SDK on your environment. It might work with Python 2, but that is not tested and expected to create trouble at some point. When you install CamundaLibrary, Robot Framework will be installed automatically as required dependency:
32+
```
33+
pip install -U robotframework-camunda
34+
```
35+
## Execute examples
36+
When you now checkout this repository at run it with you python environment, you should see results:
37+
```
38+
robot -d logs .
39+
```

0 commit comments

Comments
 (0)