Checkpoint commit - blips show up as a sidebar now instead of at the bottom
[tech-radar-editor.git] / rel / config.exs
1 # Import all plugins from `rel/plugins`
2 # They can then be used by adding `plugin MyPlugin` to
3 # either an environment, or release definition, where
4 # `MyPlugin` is the name of the plugin module.
5 Path.join(["rel", "plugins", "*.exs"])
6 |> Path.wildcard()
7 |> Enum.map(&Code.eval_file(&1))
8
9 use Mix.Releases.Config,
10 # This sets the default release built by `mix release`
11 default_release: :default,
12 # This sets the default environment used by `mix release`
13 default_environment: Mix.env()
14
15 # For a full list of config options for both releases
16 # and environments, visit https://hexdocs.pm/distillery/configuration.html
17
18
19 # You may define one or more environments in this file,
20 # an environment's settings will override those of a release
21 # when building in that environment, this combination of release
22 # and environment configuration is called a profile
23
24 environment :dev do
25 set dev_mode: true
26 set include_erts: false
27 set cookie: :"NBhg=&2xapMkhKasblD2V3wWc}6H=JWAH3M;*_hl*@<2iI6co?Q8:}]$!2H`A)[("
28 end
29
30 environment :prod do
31 set include_erts: true
32 set include_src: false
33 set cookie: :"AObX{{4)q7^jvvp.qSlKVp$ZbrY?pa|%XJ5^f[Vw6Pnk@Ok.j4xU^/[dIC*S@^|E"
34 end
35
36 # You may define one or more releases in this file.
37 # If you have not set a default release, or selected one
38 # when running `mix release`, the first release in the file
39 # will be used by default
40
41 release :tech_radar_editor do
42 set version: current_version(:tech_radar_editor)
43 set applications: [
44 :runtime_tools
45 ]
46 end
47