mirror of
https://github.com/benbusby/farside.git
synced 2025-06-08 10:26:36 +00:00
55 lines
1.8 KiB
Elixir
55 lines
1.8 KiB
Elixir
# Import all plugins from `rel/plugins`
|
|
# They can then be used by adding `plugin MyPlugin` to
|
|
# either an environment, or release definition, where
|
|
# `MyPlugin` is the name of the plugin module.
|
|
~w(rel plugins *.exs)
|
|
|> Path.join()
|
|
|> Path.wildcard()
|
|
|> Enum.map(&Code.eval_file(&1))
|
|
|
|
use Distillery.Releases.Config,
|
|
# This sets the default release built by `mix distillery.release`
|
|
default_release: :default,
|
|
# This sets the default environment used by `mix distillery.release`
|
|
default_environment: Mix.env()
|
|
|
|
# For a full list of config options for both releases
|
|
# and environments, visit https://hexdocs.pm/distillery/config/distillery.html
|
|
|
|
|
|
# You may define one or more environments in this file,
|
|
# an environment's settings will override those of a release
|
|
# when building in that environment, this combination of release
|
|
# and environment configuration is called a profile
|
|
|
|
environment :dev do
|
|
# If you are running Phoenix, you should make sure that
|
|
# server: true is set and the code reloader is disabled,
|
|
# even in dev mode.
|
|
# It is recommended that you build with MIX_ENV=prod and pass
|
|
# the --env flag to Distillery explicitly if you want to use
|
|
# dev mode.
|
|
set dev_mode: true
|
|
set include_erts: false
|
|
set cookie: :"G4?a`J[2D&bQ?b?%GpOMXbd2c$A[^%v(XvJaZd7]PzEUWnQRS`qf]3af7*:MwjI^"
|
|
end
|
|
|
|
environment :prod do
|
|
set include_erts: true
|
|
set include_src: false
|
|
set cookie: :"OciIWQ*Da2eKXW8Wfsl4{TH``k?|JO:c0|}x^AmZQUltc04ZD;!o($[]`58fG<1X"
|
|
set vm_args: "rel/vm.args"
|
|
end
|
|
|
|
# You may define one or more releases in this file.
|
|
# If you have not set a default release, or selected one
|
|
# when running `mix distillery.release`, the first release in the file
|
|
# will be used by default
|
|
|
|
release :farside do
|
|
set version: current_version(:farside)
|
|
set applications: [
|
|
:runtime_tools
|
|
]
|
|
end
|
|
|