producer123
Hi all.
I just started a full-time job as a Elixir developer
.
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?
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
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
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
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
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
- #ai
- #phoenix_html
- #iex
- #elixirconf-us
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
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
Qqwy
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
I use a PIDFile with systemd to handle the server personally. I have full handling, restarting, etc… working well.
NobbZ
Okay, I now had some time to spare and google, and I learned that a
procfileis specific to heroku, so if you want to stick to heroku, you’ll have no other option than to continue using this procfile…OvermindDL1
Heh, explains why I’ve not heard of it then… ^.^;
Is it anything like a pidfile or is it something else?
NobbZ
Dunno, haven’t continue reading after reaching the word “heroku” in googles definition box, which said this:
and linked to:
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
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
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
As I said, I never used one before. but on a quick google it looked like it were like described.