Elixir Deployment Problem

Hi every one !
##Problem
##elixir Deployment
I am using edeliver package to deply the eliixir project.

When I execute the command as
#mix task
mix edeliver update production --branch=master --start-deploy

#error Out Put

Failed to detect generated release at
esl@164.132.53.154:/tmp/erlang/udpserver/builds

Please set RELEASE_DIR in the config file to fix that,
or check that the APP variable is set correctly.

##My .deliver/config file

APP="bakend" # name of your release

BUILD_HOST="164.132.53.154" # host where to build the release
BUILD_USER="esl" # local user at build host
BUILD_AT="/tmp/erlang/udpserver/builds" # build directory on build host

#STAGING_HOSTS="164.132.53.154" # staging / test hosts separated by space
#STAGING_USER="test" # local user at staging hosts
TEST_AT="/test/udpserver" # deploy directory on staging hosts. default is DELIVER_TO

PRODUCTION_HOSTS="164.132.53.154" # deploy / production hosts separated by space
PRODUCTION_USER="esl" # local user at deploy hosts
DELIVER_TO="bin/udpserver" # deploy directory on production hosts
USING_DISTILLERY="true"

Am I missing anythin here…
This how the BUILD_AT directory looks in my host
when I do ls on host

2 Likes

@blackode did you figure out how to deploy?
(we are seeing the same error message and were hoping there’s a fix…!)