procodile icon indicating copy to clipboard operation
procodile copied to clipboard

🐊 Run processes in the background (and foreground) on Mac & Linux from a Procfile (for production and/or development environments)

Results 13 procodile issues
Sort by recently updated
recently updated
newest added

Foreman [loads .env files](https://github.com/ddollar/foreman/blob/19e9806c4cdf348325fe8312fac827774af4affa/lib/foreman/env.rb#L11). While trying to move to Procodile (which doesn't), this was a blocker for me. Would this be an interesting feature for this project? Or is there...

Following is some describe. ## when i first use procodile, i try to get help message like this ```sh ╰─ $ procodile -h Usage: procodile -h [options] -r, --root PATH...

Just a tiny PR, which adds support of signal sequences for the `term_signal` option. For example, if we follow [the sidekiq's guideline](https://github.com/mperham/sidekiq/wiki/Signals#tstp) and want to send TSTP + TERM signal,...

Bumps [json](https://github.com/flori/json) from 2.2.0 to 2.3.1. Changelog Sourced from json's changelog. 2020-06-30 (2.3.1) Spelling and grammar fixes for comments. Pull request #191 by Josh Kline. Enhance generic JSON and #generate...

dependencies

Hi there, First, thanks for Procodile! 🙌 In the docs it's mentioned: > It isn't recommended that you add procodile to an application's Gemfile if you have one. It is...

Hello! I have a running instance of application int a kubernetes cluster (with debian10 os). I set up logs path in Procfile.options file but I couldn't see this files on...

Do you have any idea if is correct to use the procodile on kubernetes containers? I implemented this in one of my projects because I need two running processes (web,...

Hi! I'm using procodile along with staytus and want it to be run on localhost only. So, I made change like ``` ... web: restart_mode: usr2 proxy_port: 8787 proxy_address: 127.0.0.1...

Let's say I have some common processes I want to run in production (in my server) & development stages (when I'm developing it in my laptop). also there are separate...

Hi! Here is a simple sinatra app with puma as a server: https://github.com/vfreefly/simple_app Procfile from app: `web: bundle exec puma -t 5:5 -p ${PORT:-3000} -e ${RACK_ENV:-development}` Environment: ubuntu 16.04 Steps...