-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
88 additions
and
102 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
# Used by "mix format" | ||
[ | ||
inputs: [ | ||
"lib/**/*.{ex,exs}", | ||
"test/**/*.{ex,exs}", | ||
"mix.exs" | ||
], | ||
|
||
locals_without_parens: [] | ||
] | ||
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"] | ||
] |
This file contains 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
This file contains 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
This file contains 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
File renamed without changes.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +0,0 @@ | ||
|
||
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
@echo off | ||
rem Set the release to work across nodes. If using the long name format like | ||
rem the one below (my_app@127.0.0.1), you need to also uncomment the | ||
rem RELEASE_DISTRIBUTION variable below. | ||
rem Set the release to load code on demand (interactive) instead of preloading (embedded). | ||
rem set RELEASE_MODE=interactive | ||
|
||
rem Set the release to work across nodes. | ||
rem RELEASE_DISTRIBUTION must be "sname" (local), "name" (distributed) or "none". | ||
rem set RELEASE_DISTRIBUTION=name | ||
rem set RELEASE_NODE=<%= @release.name %>@127.0.0.1 | ||
rem set RELEASE_NODE=<%= @release.name %> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,20 @@ | ||
#!/bin/sh | ||
|
||
# Sets and enables heart (recommended only in daemon mode) | ||
# if [ "$RELEASE_COMMAND" = "daemon" ] || [ "$RELEASE_COMMAND" = "daemon_iex" ]; then | ||
# HEART_COMMAND="$RELEASE_ROOT/bin/$RELEASE_NAME $RELEASE_COMMAND" | ||
# export HEART_COMMAND | ||
# export ELIXIR_ERL_OPTIONS="-heart" | ||
# fi | ||
# # Sets and enables heart (recommended only in daemon mode) | ||
# case $RELEASE_COMMAND in | ||
# daemon*) | ||
# HEART_COMMAND="$RELEASE_ROOT/bin/$RELEASE_NAME $RELEASE_COMMAND" | ||
# export HEART_COMMAND | ||
# export ELIXIR_ERL_OPTIONS="-heart" | ||
# ;; | ||
# *) | ||
# ;; | ||
# esac | ||
|
||
# Set the release to work across nodes. If using the long name format like | ||
# the one below (my_app@127.0.0.1), you need to also uncomment the | ||
# RELEASE_DISTRIBUTION variable below. | ||
# # Set the release to load code on demand (interactive) instead of preloading (embedded). | ||
# export RELEASE_MODE=interactive | ||
|
||
# # Set the release to work across nodes. | ||
# # RELEASE_DISTRIBUTION must be "sname" (local), "name" (distributed) or "none". | ||
# export RELEASE_DISTRIBUTION=name | ||
# export RELEASE_NODE=<%= @release.name %>@127.0.0.1 | ||
# export RELEASE_NODE=<%= @release.name %> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
## Customize flags given to the VM: https://www.erlang.org/doc/man/erl.html | ||
## -mode/-name/-sname/-setcookie are configured via env vars, do not set them here | ||
|
||
## Increase number of concurrent ports/sockets | ||
##+Q 65536 | ||
|
||
## Tweak GC to run more often | ||
##-env ERL_FULLSWEEP_AFTER 10 | ||
|
||
## Enable deployment without epmd | ||
## (requires changing both vm.args and remote.vm.args) | ||
##-start_epmd false -erl_epmd_port 6789 -dist_listen false |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
## Customize flags given to the VM: http://erlang.org/doc/man/erl.html | ||
## Customize flags given to the VM: https://www.erlang.org/doc/man/erl.html | ||
## -mode/-name/-sname/-setcookie are configured via env vars, do not set them here | ||
|
||
## Number of dirty schedulers doing IO work (file, sockets, etc) | ||
##+SDio 5 | ||
|
||
## Increase number of concurrent ports/sockets | ||
##+Q 65536 | ||
|
||
## Tweak GC to run more often | ||
##-env ERL_FULLSWEEP_AFTER 10 | ||
|
||
## Enable deployment without epmd | ||
## (requires changing both vm.args and remote.vm.args) | ||
##-start_epmd false -erl_epmd_port 6789false |
Oops, something went wrong.