pedromvieira
How can we share static files (css, js) between multiple Phoenix Web apps inside umbrella?
endpoint
plug Plug.Static,
at: "/", from: :my_app, gzip: false,
only: ~w(css fonts images js favicon.ico robots.txt)
web_a app.html.eex
<!-- CSS -->
<link rel="stylesheet" href="<%= static_path(@conn, "/css/app.css") %>">
<!-- JS -->
<script src="<%= static_path(@conn, "/js/app.js") %>"></script>
web_b app.html.eex
<!-- CSS -->
<link rel="stylesheet" href="<%= static_path(@conn, "/css/app.css") %>">
<!-- JS -->
<script src="<%= static_path(@conn, "/js/app.js") %>"></script>
Currently my 2nd app dosent load css created by digest.
Is there a way to break into multiple css and load based on app (ex: app.css + custom_a.css)?
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
Hello,
I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
New
Other Trending Topics
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
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
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
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
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
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 5 of 5 Posts
jeremyjh
Umbrella projects are for sharing a
mix.lockfile and associated dependencies between multiple OTP applications. They don’t have anything to offer to the subject of web assets. If it makes sense to have multiple web apps in an umbrella, probably the only reasonable way to share assets would be through symlinks.outlog
I output full static asset paths in json using this:
eg: MyApp.Web.Asset.full_path(“/images/3.png”)
requires you config static_url for all envs
static_url: [scheme: "http", host: "comp.local", port: 4001],so that might be useful - though you are tightly coupling the two phoenix apps, which leads me to believe they should perhaps be united.. also I would assume you need to set CORS headers, deal with same-origin and all kinds of other stuff.. so the real(off-topic) question is perhaps why two separate phoenix apps?
leifericf
This exact topic was discussed on one of the ElixirTalk podcast episodes. I think that conversation might be useful to you. If I remember correctly, it was @desmond who brought it up and provided some examples. I’ll see if I can find the exact episode for you when I get back on my desktop later (writing from mobile now).
desmond
In the case of an umbrella with two sub-apps, each with a single Phoenix endpoint, you can do:
Endpoint 1:
Endpoint 2:
and keep the
unmodified from its original form. It will request assets from its own endpoint, which the
Plug.Staticwill serve either from its own assets (for AppA) or from the assets of a different app within the umbrella (AppB). Basically all your assets are served from AppA. There’s no magic to that- specifying a different app just tells the plug to look in a certain directory, it doesn’t really “know” about the other app and doesn’t go through its Phoenix request stack. So it’s pretty fast.To serve a main stylesheet across apps plus a custom stylesheet for a particular app, I’d recommend making a separate Phoenix app (or endpoint) called
assetswhose only purpose is to serve assets. Then you point all yourPlug.Statics to serve assets from thatassetsapp. You need to tell brunch how to output the correct segregated asset files, likeapp.css,app1.css, etc. Then in yourapp.html.eex, something like:leifericf
Found it! Check out ElixirTalk Episode #103, starting at 25:52
Thanks for sharing that, @desmond.