Last active
August 19, 2017 15:22
-
-
Save AndrewDryga/b7a0124c30abe4a8400edbb3ce18446f to your computer and use it in GitHub Desktop.
Files for Elixir deployment to Heroku
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
# Erlang version | |
erlang_version=19.3 | |
# Elixir version | |
elixir_version=1.5.1 | |
# Always rebuild from scratch on every deploy? | |
always_rebuild=true | |
# Release Elixir App | |
post_compile="rel/hooks/post_compile.sh" | |
# Set the path the app is run from | |
# runtime_path=/opt |
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
release: /app/bin/myapp migrate | |
web: /app/bin/myapp foreground |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment