defmodule Thulani.MixProject do use Mix.Project def project do [ apps_path: "apps", version: "0.1.0", start_permanent: Mix.env() == :prod, deps: deps(), releases: releases(), default_release: :thulani_flex ] end defp deps do [] end defp releases do applications = [thulani_bot: :permanent] [ thulani_flex: [ include_executables_for: [:unix, :windows], strip_beams: false, applications: applications ], thulani_prod: [ include_executables_for: [:unix], strip_beams: true, applications: applications ] ] end end