tallakt
I am having issues running mix doc all of a sudden though I did not make a lot of changes to my library codepagex for a long time. I am getting:
codepagex (master *) % mix docs
23:09:22.795 [notice] Application makeup exited: exited in: Makeup.Application.start(:normal, [])
** (EXIT) an exception was raised:
** (UndefinedFunctionError) function Makeup.Application.start/2 is undefined (module Makeup.Application is not available)
(makeup 1.1.2) Makeup.Application.start(:normal, [])
(kernel 10.0) application_master.erl:295: :application_master.start_it_old/4
23:09:22.802 [notice] Application nimble_parsec exited: :stopped
23:09:22.802 [notice] Application earmark_parser exited: :stopped
23:09:22.802 [notice] Application eex exited: :stopped
** (MatchError) no match of right hand side value: {:error, {:makeup, {:bad_return, {{Makeup.Application, :start, [:normal, []]}, {:EXIT, {:undef, [{Makeup.Application, :start, [:normal, []], []}, {:application_master, :start_it_old, 4, [file: ~c"application_master.erl", line: 295]}]}}}}}}
(ex_doc 0.33.0) lib/mix/tasks/docs.ex:337: Mix.Tasks.Docs.run/3
(mix 1.16.3) lib/mix/task.ex:478: anonymous fn/3 in Mix.Task.run_task/5
(mix 1.16.3) lib/mix/cli.ex:96: Mix.CLI.run_task/2
/opt/homebrew/bin/mix:2: (file)
My project is here: codepagex/mix.exs at main · tallakt/codepagex · GitHub
Appreciate any help, I’m totally lost here…
Trending in Questions
I having some trouble figuring out if I have set myself too strict of standards for my production server. Currently I can handle 75% of r...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
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
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
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
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
A little off-topic, but I feel like people here have a good head on their shoulders.
I used to be quite good at making software. Was luc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ai
- #ecto-query
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #elixirconf-eu
- #api
- #forms
- #metaprogramming
- #hex











Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
dimitarvp
I presume you have upgraded the locally used Erlang and Elixir?
tallakt
Yes I am on Elixir 1.16.3 and MacOS, Elixir and Erlang was installed with
asdf latesttallakt
Actually the first time I’m running I am getting a different compilation error. The second time I am getting the one described above. The initial error is:
dimitarvp
So if you’re now running latest Erlang / Elixir I would also update all dependencies to their latest version.
dimitarvp
OK so I just cloned your repo and ran
mix do deps.get, compilesuccessfully.Erlang version is
26.2.5.Elixir version is
1.16.3-otp-26.Let’s see about
mix docsnow…dimitarvp
Well curiously I couldn’t get it to work quickly either.
So let’s backtrack. What were the last Erlang/Elixir versions you used successfully when working on the library?
tallakt
I’m not sure. Last update was in 2020, I would think the version 1.5.x specified in mix.exs is accurate. I don’t remember what happened back then.
I’m thinking recreating the code from a new project
mix newthen add stuff until I see when it breaks. That would take a bit longer though. Maybe thats what I have to dodimitarvp
Usually I remember this spec was several versions behind. I’d start with the release that was semi-recent at 2020 and take it from there.
Might be necessary I am afraid. Curious what updates you’ll give us because I like your library.
tallakt
So duplicating the code into a new mix project worked. Not many changes though, Im not sure which one did the trick:
dimitarvp
Cool, glad you solved it!