Created
July 22, 2017 19:46
-
-
Save KamilLelonek/541a093d992444be10f9d8c036e3076a to your computer and use it in GitHub Desktop.
Elixir Mixfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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