Installing frontail on odroid?

I’ve been using openhabianpi for a few weeks now and have decided to upgrade to odroid c2. OH2 intstalled, so far so good, but I miss frontail.

How do I get this running on Ununtu for droid? I’ve checked through the forums and it looks like its specific to the pi?

Is that correct?

Make sure you have Node.js installed (node -v)
Frontail is a simple Node.js app so it should run on every platform Node supports.

Thanks. That pointed me in the right direction.

Installed node.js and frontail app and its up and running now.

I finally got this working but, How do you get it to start at boot?

I created a service file

[Unit]
Description=Frontail openHAB instance, reachable at http://%H:9001
Documentation=https://github.com/mthenw/frontail
Documentation=https://github.com/openhab/openhabian/issues/28
After=openhab2.service

[Service]
Type=simple
ExecStart=/usr/bin/frontail --ui-highlight --ui-highlight-preset ./preset/openhab.json -t openhab -l 2000 -n 200 /var/log/openhab2/openhab.log /var/log/openhab2/events.log
Restart=always
User=openhab
Group=openhab
Environment=PATH=/usr/bin/
Environment=NODE_ENV=production
WorkingDirectory=/usr/bin/

[Install]
WantedBy=multi-user.target