Skip to content

Instantly share code, notes, and snippets.

@KamilLelonek
Created July 22, 2017 19:46
Show Gist options
  • Save KamilLelonek/541a093d992444be10f9d8c036e3076a to your computer and use it in GitHub Desktop.
Save KamilLelonek/541a093d992444be10f9d8c036e3076a to your computer and use it in GitHub Desktop.
Elixir Mixfile
defmodule YourApplication.Mixfile do
use Mix.Project
def project do
[
# ...
escript: escript(),
]
end
# ...
def escript do
[
main_module: YourApplication,
]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment