tiago.avila09
I’m trying to release a personal project to Fyi.io, but when I run fly launch I got the below error:
(SyntaxError) invalid syntax found on nofile:1:1:
error: unexpected token: "\" (column 1, code point U+005C)
│
1 │ \true Code.ensure_loaded?(Mix.Tasks.Phx.Gen.Release)\"
│ ^
│
└─ nofile:1:1
(elixir 1.16.2) lib/code.ex:571: Code.validated_eval_string/3
(elixir 1.16.2) lib/enum.ex:987: Enum."-each/2-lists^foreach/1-0-"/2
(mix 1.16.2) lib/mix/tasks/run.ex:142: Mix.Tasks.Run.run/5
(mix 1.16.2) lib/mix/tasks/run.ex:85: Mix.Tasks.Run.run/1
(mix 1.16.2) lib/mix/task.ex:478: anonymous fn/3 in Mix.Task.run_task/5
(mix 1.16.2) lib/mix/cli.ex:96: Mix.CLI.run_task/2
c:/Program Files/Elixir/bin/mix:2: (file)
(elixir 1.16.2) lib/code.ex:1489: Code.require_file/2
Here’s the Erlang and Elixir versions I’m using:
Erlang/OTP 25
Elixir 1.16.2
And here’s the list of deps:
{:phoenix, "~> 1.7.9"},
{:phoenix_html, "~> 3.3"},
{:phoenix_live_reload, "~> 1.2", only: :dev},
{:phoenix_live_view, "~> 0.19.0"},
{:floki, ">= 0.30.0", only: :test},
{:phoenix_live_dashboard, "~> 0.8.0"},
{:esbuild, "~> 0.7", runtime: Mix.env() == :dev},
{:tailwind, "~> 0.2.0", runtime: Mix.env() == :dev},
{:swoosh, "~> 1.3"},
{:finch, "~> 0.13"},
{:telemetry_metrics, "~> 0.6"},
{:telemetry_poller, "~> 1.0"},
{:gettext, "~> 0.20"},
{:jason, "~> 1.2"},
{:plug_cowboy, "~> 2.5"},
{:phoenix_ecto, "~> 4.0"},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:horde, "~> 0.9.0"},
{:excoveralls, "~> 0.18", only: :test}
I set the environment to PROD and ran mix compile and then mix phx.gen.release, but I didn’t get the error by doing that.
Does anyone know how to proceed?
Thanks in advance! ![]()
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #elixirconf-us
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 4- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
cevado
are you using releases?
Mixisn’t available in releases.have you aready read this page? Deploying with Releases — Phoenix v1.8.8
al2o3cr
That string appears to be generated here:
but how that produces a literal
\is not clear…tiago.avila09
Yes, I read it and followed all the steps from Deploying on Fly.io — Phoenix v1.8.8
tiago.avila09
Interesting! Thanks for your answer. I posted that on the Fly.io community, let’s see what they tell me.