-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.exs
51 lines (42 loc) · 1.54 KB
/
config.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# 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.
Path.join(["rel", "plugins", "*.exs"])
|> Path.wildcard()
|> Enum.map(&Code.eval_file(&1))
use Mix.Releases.Config,
# This sets the default release built by `mix release`
default_release: :default,
# This sets the default environment used by `mix release`
default_environment: Mix.env()
# For a full list of config options for both releases
# and environments, visit https://hexdocs.pm/distillery/configuration.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
set dev_mode: true
set include_erts: false
set cookie: :"{5f_$gk}RRaLMqP{@X)|)PtP$EnD<)Q~}Lo/Yd~rC9@9V,nx(N?vY$BOg)yT5YAm"
end
environment :prod do
set include_erts: true
set include_src: false
set cookie: :"~aS%yv?[C@2DnhIh]AVwTL6xs@Y!CF3!ubSl*wbn,6;;{84Z2Bvsp<UV5ib1Tl)g"
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 release`, the first release in the file
# will be used by default
release :noa do
set version: current_version(:noa)
set applications: [
:runtime_tools
]
set commands: [
"migrate": "rel/commands/migrate.sh",
"seed": "rel/commands/seed.sh"
]
end