We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dc7253 commit 9c68f48Copy full SHA for 9c68f48
1 file changed
README.md
@@ -29,11 +29,16 @@ The package can be installed by adding `bacstack` to your list of dependencies i
29
```elixir
30
def deps do
31
[
32
- {:bacstack, github: "bacnet-ex/bacstack"}
+ {:bacstack, github: "bacnet-ex/bacstack", env: Mix.env()}
33
]
34
end
35
```
36
37
+The `env: Mix.env() ` part is recommended to add, so in development you get some more validation (i.e. `BACnet.Stack.Client.send`)
38
+and in production you get better performance.
39
+You should test both development and production builds before shipping to production.
40
+If you omit `env`, then the library will be compiled in `prod` environment by Mix.
41
+
42
The documentation can be found at <https://bacnet-ex.github.io/bacstack/>.
43
44
<!--
0 commit comments