VlkrS
Note: This is a HOWTO, not a question. I hope this is an appropriate place to share this, so it can be found by others who might run into problems getting Phoenix to work fully on OpenBSD.
Recent versions of Phoenix are tightly integrated with both TailwindCSS and esbuild, and mix phx.new installs binary distributions of both.
Unfortunately that doesn’t work out of the box on OpenBSD, and needs a few extra steps to be carried out right after initializing a project.
Tailwind
The automatically installed Linux binary obviously will never work on OpenBSD. Therefore we will need to manually install tailwind:
First install NodeJS:
$ doas pkg_add node
then Tailwind and the Forms plugin:
$ npm install -D tailwindcss
$ npm install -D @tailwindcss/forms
It’s possible that this creates a version mismatch between the version of tailwind installed by npm and the version from the default configuration. If that’s the case, just adjust the version in config/config.exs:
...
# Configure tailwind (the version is required)
config :tailwind,
version: "<your version here>",
...
now all that’s left is to replace the binary _build/tailwind_linux_x64:
$ > _build/tailwind_linux_x64
with a small shell script
#!/bin/sh
npx tailwindcss "$@"
At this point we’re done. All the Tailwind integrations will now work on OpenBSD in the same way as on Linux.
esbuild
Those working with 11th gen or later Intel CPUs will notice that the esbuild binaries released by the esbuild team will crash on OpenBSD.
(see Install fails on OpenBSD · Issue #3523 · evanw/esbuild · GitHub for details)
Fortunately that’s also easy to fix by building esbuild with OpenBSDs patched go compiler and copying the resulting binary over _build/esbuild_openbsd_x64.
Trending in Questions
Other Trending Topics
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
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 8- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
krasenyp
Run all the things on *BSD! Thank you for the guide!
VlkrS
Update: Starting with OpenBSD 7.7-current, esbuild is provided as port.
Therefore, esbuild problems can be solved as simply as
on affected systems.
LostKobrakai
You can configure the path to the binary: esbuild/lib/esbuild.ex at main · phoenixframework/esbuild · GitHub
linusdm
This made me think of the horizon library by @jimfreeze GitHub - jfreeze/horizon: Horizon deployment · GitHub
He also made an effort to run Phoenix apps on FreeBSD (to be honest, I don’t even know the exact relation between OpenBSD and FreeBSD, so this might not even be relevant).
VlkrS
The BSDs share common ancestry and the tailwind issue. Unfortunately, the solution that (I believe) @dch built for FreeBSD doesn’t easily translate to OpenBSD.
Having said all that, Horizon is a seriously cool project!
krasenyp
I think it’s time to sit down and write a tutorial on packaging Elixir releases as FreeBSD ports. It allows installation as just another program and one can easily distribute them with a custom port repository.
Slesa
It sounds very good at the start. It seems to work with the tailwind script. But on OpenBSD 7.8, I get the error
VlkrS
The OpenBSD version is irrelevant here. More recent versions of Phoenix use Tailwind v4, Tailwind v4 uses Parcel, Parcel wants to install a binary but doesn’t provide said binary for OpenBSD.
Phoenix itself works, but Tailwind version 4 doesn’t.