Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add blog article url #11

Merged
merged 1 commit into from
Dec 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@
It is mainly defined by two behaviours:
- `Traktor.Action` for the business logic;
- `Traktor.Store` for the persistance layer.

More details in the blog post: https://medium.com/qixxit-development/expecting-the-unexpected-37ee97e7f6a2

Example application: https://github.com/qixxit/two_phase_commit_example
5 changes: 3 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ defmodule Traktor.MixProject do

@github_url "https://github.com/qixxit/traktor"
@example_github_url "https://github.com/qixxit/two_phase_commit_example"
@article_url "https://medium.com/blog_post_url"
@description "A library to execute actions in a traceable manner."

def project do
Expand Down Expand Up @@ -40,8 +41,8 @@ defmodule Traktor.MixProject do
maintainers: ["Tobias Kräntzer", "Ed Ellson", "Dorian Iacobescu"],
links: %{
"GitHub" => @github_url,
"Example" => @example_github_url
# "Blog Post" => "https://medium.com/blog_post_url",
"Example" => @example_github_url,
"Blog Post" => @article_url
},
source_url: @github_url
]
Expand Down