niccolox
Phoenix Components DaisyUI runs locally but fails on Fly.io with library dependencies
inspired by the latest Phoenx.Components work on dev I started to build a Phoenix 1.7 dev sandbox and include a Phoenix Components DaisyUI library module and deploy to fly.io so I can run e2e tests in Browserstack and Percy.io
A couple of questions;
- How do I create a Phoenix Component library? I started GitHub - niccolox/phoenix_components_daisy: phoenix components daisy · GitHub but got an error
#18 0.780 warning: function elixirc_paths/1 is unused
#18 0.780 /app/deps/phoenix_components_daisy/mix.exs:21
#18 0.780
#18 0.828 ==> phoenix_components_daisy
#18 0.828 Compiling 2 files (.ex)
#18 0.843 warning: module attribute @doc was set but no definition follows it
#18 0.843 lib/phoenix_components_daisy.ex:6
#18 0.843
#18 0.850
#18 0.850 == Compilation error in file lib/components/cards/card.ex ==
#18 0.850 ** (CompileError) lib/components/cards/card.ex:2: module Phoenix.Component is not loaded and could not be found
#18 0.850 (elixir 1.14.0) expanding macro: Kernel.use/1
#18 0.850 lib/components/cards/card.ex:2: PhoenixComponentsDaisy.Card (module)
#18 0.852 could not compile dependency :phoenix_components_daisy, "mix compile" failed. Errors may have been logged above. You can recompile this dependency with "mix deps.compile phoenix_components_daisy", update it with "mix deps.update phoenix_components_daisy" or clean it with "mix deps.clean phoenix_components_daisy"
- does a library of Phoenix Components need a phoenix requirement? *
I know the Phoenix Components work when I include them as simple files in the components folder
https://github.com/niccolox/phx_1_7_dev_sandbox/blob/main/lib/phx_1_7_dev_sandbox_web/components/daisycard.ex
- When I use the Local Phoenix Component (i.e. not imported from Github) I get a a tailwind esbuild error
=> ERROR [builder 13/17] RUN mix assets.deploy 3.5s
------
> [builder 13/17] RUN mix assets.deploy:
#22 0.838
#22 0.838 01:33:55.337 [debug] Downloading tailwind from https://github.com/tailwindlabs/tailwindcss/releases/download/v3.1.8/tailwindcss-linux-x64
#22 3.474 node:internal/modules/cjs/loader:933
#22 3.474 const err = new Error(message);
#22 3.474 ^
#22 3.474
#22 3.474 Error: Cannot find module 'daisyui'
#22 3.474 Require stack:
#22 3.474 - /app/assets/tailwind.config.js
#22 3.474 - /snapshot/tailwindcss/lib/cli.js
#22 3.474 - /snapshot/tailwindcss/standalone-cli/standalone.js
#22 3.474 1) If you want to compile the package/file into executable, please pay attention to compilation warnings and specify a literal in 'require' call. 2) If you don't want to compile the package/file into executable and want to 'require' it from filesystem (likely plugin), specify an absolute path in 'require' call using process.cwd() or process.execPath.
#22 3.474 at Function.Module._resolveFilename (node:internal/modules/cjs/loader:933:15)
#22 3.474 at Function._resolveFilename (pkg/prelude/bootstrap.js:1955:46)
#22 3.474 at Function.Module._load (node:internal/modules/cjs/loader:778:27)
#22 3.474 at Module.require (node:internal/modules/cjs/loader:1005:19)
#22 3.474 at Module.require (pkg/prelude/bootstrap.js:1855:31)
#22 3.474 at Module.require (/snapshot/tailwindcss/standalone-cli/standalone.js:25:22)
#22 3.474 at require (node:internal/modules/cjs/helpers:102:18)
#22 3.474 at Object.<anonymous> (/app/assets/tailwind.config.js:21:5)
#22 3.474 at Module._compile (node:internal/modules/cjs/loader:1105:14)
#22 3.474 at Module._compile (pkg/prelude/bootstrap.js:1894:32) {
#22 3.474 code: 'MODULE_NOT_FOUND',
#22 3.474 requireStack: [
#22 3.474 '/app/assets/tailwind.config.js',
#22 3.474 '/snapshot/tailwindcss/lib/cli.js',
#22 3.474 '/snapshot/tailwindcss/standalone-cli/standalone.js'
#22 3.474 ],
#22 3.474 pkg: true
#22 3.474 }
#22 3.488 ** (Mix) `mix tailwind default --minify` exited with 1
------
Error error building: executor failed running [/bin/sh -c mix assets.deploy]: exit code: 1
Sandbox Phoenix 1.7 dev app
https://github.com/niccolox/phx_1_7_dev_sandbox
Phoenix Component DaisyUI dev library
https://github.com/niccolox/phoenix_components_daisy
Marked As Solved
andreaseriksson
You need to run npm install in the docker file.
2
Also Liked
Popular in Questions
I have a another noob question about loop. Since elixir is immutable, while loop is not directly possible.
total = 10
while total != 0
...
New
lets say i have a sample like
a = 20; b = 10;
if (a > b) do
{:ok, "a"}
end
if (a < b) do
{:ok, b}
end
if (a == b) do
{:ok, "equa...
New
can someone please explain to me how Enum.reduce works with maps
New
Hello, how can I check the Phoenix version ?
Thanks !
New
Forgive me if this is obvious, but how does one delete a database record WITHOUT selecting it first? Ecto.Repo — Ecto v3.14.0 has exampl...
New
I tried installing
elixir 1.11.2
erlang 23.3.4
via asdf in my zsh shell. Enabled the versions locally and globally.
When I list them ...
New
I am using Ecto timestamps with postgres, I can see the timestamps() use the :naive_dateime but for my use case I wanted to store the ti...
New
Hi. I’ve noticed that Windows Powershell has it’s own IEX command and you cannot access Elixir’s IEX due to the conflict. This isn’t a cr...
New
Okay, I’m having a heck of a time trying to figure out how to best handle the validation of belongs_to associations in Ecto. I’m sure I’...
New
Hi!
Currently I want to submit a form by pressing the Enter key. However, since my input field is of type “textarea” this is just adds a...
New
Other popular topics
Hi, this is for people who, like me, have had some friction using .html.heex templates in VSCode.
The solution seems to be, in a hyphena...
New
Hello, can anybody help here..? I have a list of players and I what to delete an element, but every for loop the list is reverting to ori...
New
What is the difference between System.get_env and Application.get_env? For example, what are best practices to use one versus another.
New
Anybody knows a comprehensive comparison of Django and Phoenix, thanks for the help.
Where are they similar?
Where do they differ the m...
New
I tried installing
elixir 1.11.2
erlang 23.3.4
via asdf in my zsh shell. Enabled the versions locally and globally.
When I list them ...
New
Hi everyone,
I was playing with phoenix liveView but I run into an issue. I have a form and want to validate each input text when the te...
New
We’ve put together this wiki for Phoenix LiveView - please feel free to add any info you feel is worth including.
What is Phoenix LiveV...
New
I would like to know what is the best IDE for elixir development?
New
I have a server on AWS, and was running a load test using artillery. When looking at the Phoenix dashboard I see the Ports going to 100% ...
New
I want to highlight html closing tags when i click a html tag. That works in .html files but doesnt work for html.eex templates. How can...
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
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #supervisor
- #advent-of-code
- #elixirconf-us
- #distillery
- #processes
- #forms
- #api
- #metaprogramming
- #security
- #performance









