VlkrS

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.

Showing Posts 1 to 8

krasenyp

krasenyp

Run all the things on *BSD! Thank you for the guide!

VlkrS

VlkrS OP

Update: Starting with OpenBSD 7.7-current, esbuild is provided as port.

Therefore, esbuild problems can be solved as simply as

$ doas pkg_add esbuild
$ ln -s /usr/local/bin/esbuild _build/esbuild-openbsd-x64

on affected systems.

LostKobrakai

LostKobrakai

linusdm

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

VlkrS OP

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! :grinning:

krasenyp

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

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

No prebuild or local build of @parcel/watcher found. Tried @parcel/watcher-openbsd-x64.
VlkrS

VlkrS OP

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.

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
nseaSeb
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
RemyXRenard
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
velrest
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
samoloth
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
FlyingNoodle
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 Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
webofbits
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself. My main conc...
#ai
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews