1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 08:12:31 -04:00

mix release.init

This commit is contained in:
edgurgel 2024-06-26 21:37:33 +12:00
parent ca31d47221
commit 4f87d8262a
5 changed files with 39 additions and 18 deletions

View file

@ -1,6 +1,8 @@
@echo off @echo off
rem Set the release to work across nodes. If using the long name format like rem Set the release to load code on demand (interactive) instead of preloading (embedded).
rem the one below (my_app@127.0.0.1), you need to also uncomment the rem set RELEASE_MODE=interactive
rem RELEASE_DISTRIBUTION variable below.
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_DISTRIBUTION=name
rem set RELEASE_NODE=<%= @release.name %>@127.0.0.1 rem set RELEASE_NODE=<%= @release.name %>

View file

@ -1,14 +1,20 @@
#!/bin/sh #!/bin/sh
# Sets and enables heart (recommended only in daemon mode) # # Sets and enables heart (recommended only in daemon mode)
# if [ "$RELEASE_COMMAND" = "daemon" ] || [ "$RELEASE_COMMAND" = "daemon_iex" ]; then # case $RELEASE_COMMAND in
# daemon*)
# HEART_COMMAND="$RELEASE_ROOT/bin/$RELEASE_NAME $RELEASE_COMMAND" # HEART_COMMAND="$RELEASE_ROOT/bin/$RELEASE_NAME $RELEASE_COMMAND"
# export HEART_COMMAND # export HEART_COMMAND
# export ELIXIR_ERL_OPTIONS="-heart" # export ELIXIR_ERL_OPTIONS="-heart"
# fi # ;;
# *)
# ;;
# esac
# Set the release to work across nodes. If using the long name format like # # Set the release to load code on demand (interactive) instead of preloading (embedded).
# the one below (my_app@127.0.0.1), you need to also uncomment the # export RELEASE_MODE=interactive
# RELEASE_DISTRIBUTION variable below.
# # Set the release to work across nodes.
# # RELEASE_DISTRIBUTION must be "sname" (local), "name" (distributed) or "none".
# export RELEASE_DISTRIBUTION=name # export RELEASE_DISTRIBUTION=name
# export RELEASE_NODE=<%= @release.name %>@127.0.0.1 # export RELEASE_NODE=<%= @release.name %>

12
rel/remote.vm.args.eex Normal file
View file

@ -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

View file

@ -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 ## -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 ## Increase number of concurrent ports/sockets
##+Q 65536 ##+Q 65536
## Tweak GC to run more often ## Tweak GC to run more often
##-env ERL_FULLSWEEP_AFTER 10 ##-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