We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 965daf8 commit b60b639Copy full SHA for b60b639
README.md
@@ -76,6 +76,20 @@ defp deps do
76
end
77
```
78
79
+## Deployment
80
+
81
+If you're using the Mnesia queue (the default), you'll need tell your release system to include the `:mnesia` application.
82
83
+In your mix.exs file:
84
85
+```elixir
86
+def application do
87
+ [
88
+ extra_applications: [:mnesia]
89
+ ]
90
+end
91
+```
92
93
### tl;dr
94
- Check out the [examples](https://github.com/koudelka/honeydew/tree/master/examples).
95
- Enqueue jobs with `Honeydew.async/3`, delay jobs by passing `delay_secs: <integer>`.
0 commit comments