Clarify example running readme

This commit is contained in:
Mike Bierlee 2021-04-29 00:04:45 +03:00
parent cee288bb52
commit 1ae7f5789c

View file

@ -1,5 +1,10 @@
To build any of these examples, specify the relevant DUB configuration when building Poodinis with DUB:
To run any of these examples, specify the relevant DUB configuration:
```
dub build --build=release --config=<name>Example
dub run --build=release --config=<name>Example
```
Where \<name\> corresponds to the name of the folder where the code example is in (camel-cased).
e.g:
```
dub run --build=release --config=constructorInjectionExample
```