distillery icon indicating copy to clipboard operation
distillery copied to clipboard

Simplify deployments in Elixir with OTP releases!

Results 64 distillery issues
Sort by recently updated
recently updated
newest added

### Steps to reproduce - set MIX_ENV=prod - mix release - Try to call _build\prod\rel\APPNAME\bin\YOURAPPNAME.bat foreground ``` {"init terminating in do_boot",{load_failed,[LIST OF MODULES]}} init terminating in do_boot ({load_failed, ... Crash...

bug
os:windows
deployment:scripts

I found a lot of interesting things in this repository which I would like to use to distribute applications, but I would like to understand how is the development of...

### Steps to reproduce Producing a release using Distillery shows error. ### Verbose Logs ### Description of issue - **What are the expected results?** - It should successfully produce release....

### Steps to reproduce Running a deployment with Edeliver. Just updated to erlang OTP 25. Tried to build the release and it breaks. ### Verbose Logs MIX_ENV=prod env MIX_ENV=prod mix...

…version of elixir ### Summary of changes Fixes compiler warnings ### Checklist - [x] New functions have typespecs, changed functions were updated - [x] Same for documentation, including moduledocs -...

### Summary of changes I'll review the commits, so I mostly want to understand the "why" rather than the "what" ### Checklist - [ ] New functions have typespecs, changed...

### Steps to reproduce mix.exs ```elixir defp deps do [{:distillery, "~> 2.1"}] end ``` run init ```sh MIX_ENV=prod mix distillery.init ``` change rel/config.exs ```elixir environment :prod do set erl_opts: "encrypt_debug_info"...

### Steps to reproduce In my project's `rel/config.exs` file, I just added two new ('something') custom commands: ```elixir release :my_project do set version: current_version(:my_project) set commands: [ disable_something: "rel/commands/disable_something.bash", enable_something:...

### Summary of changes The stray quote was causing a PowerShell error in the install/upgrade/downgrade commands for Windows. I'll review the commits, so I mostly want to understand the "why"...

### Summary of changes I'm not necessarily suggesting this PR be merged, I'm curious to hear what others think about the solution. My app's docker image was heavily influenced by...