producer123

producer123

Hi all.

I just started a full-time job as a Elixir developer :star_struck:.
Previously I worked mostly with Ruby stack and we used a lot Procfile with foreman 5 to start complex applications (e.g. I need to start one job worker, front-end server and the application itself).

Didn’t find anything like this for Elixir projects. Maybe you have tips and/or suggestions how you solve?

Showing Posts 1 to 10

NobbZ

NobbZ

I have no clue what a Procfile is, but usually I’d start services via systemd and let it handle dependencies as well.

In development its of course a bit different, there I’d have a script which kicks off and shuts down a bunch of docker containers for external services.

Also as long as your other stuff is running on the BEAM itself, you can add them as dependency and they will be started by the BEAM during your Apps start up process.

If I actually got your question wrong, please refine :wink:

Qqwy

Qqwy

TypeCheck Core Team

I do the same thing: systemd to start the BEAM, and all other things are applications included in the BEAM so they don’t need to be started themselves.

If you have a lot of dependencies outside of Elixir (i.e. you do have to use Redis, an NPM server to serve a web-application that includes server-side rendering, and you have an SQL database) then I think any existing tooling should work well; what would an elixir-specific tool for something like this add?

OvermindDL1

OvermindDL1

I use a PIDFile with systemd to handle the server personally. I have full handling, restarting, etc… working well.

NobbZ

NobbZ

Okay, I now had some time to spare and google, and I learned that a procfile is specific to heroku, so if you want to stick to heroku, you’ll have no other option than to continue using this procfile…

OvermindDL1

OvermindDL1

Heh, explains why I’ve not heard of it then… ^.^;

Is it anything like a pidfile or is it something else?

NobbZ

NobbZ

Dunno, haven’t continue reading after reaching the word “heroku” in googles definition box, which said this:

A Procfile is a mechanism for declaring what commands are run by your application’s dynos on the Heroku platform. It follows the process model. Mar 15, 2018

and linked to:

OvermindDL1

OvermindDL1

Ah, so not related to a PIDFile at all, it is more like a systemd file, except with almost none of the capabilitites (???).

NobbZ

NobbZ

On a quick glance, it seems to be a flat yaml (only one level) where the keys are your node/dyno names and the values are a single command to run to start your server on that node/dyno.

hassan

hassan

Not remotely true. At the very least, it’s used by

GitHub - ddollar/foreman: Manage Procfile-based applications · GitHub

and its ports in various languages.

NobbZ

NobbZ

As I said, I never used one before. but on a quick google it looked like it were like described.

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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
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
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
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

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews