Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Necro is a gem for managing processes in development environment.
You need to start by creating a ini
file which will define processes you want to manage using necro. An example
ini
file is included in the repo.
[rails]
directory = /home/gnufied/god_particle
command = zsh -c 'bundle exec rails s -p 5000'
[dj]
directory = /home/gnufied/god_particle
command = zsh -c 'bundle exec ruby script/delayed_job'
[events]
directory = /home/gnufied/god_particle
command = zsh -c 'bundle exec ruby script/event_server'
After that you can start process manager via:
~> necro start necro.ini
Above command will start all your processes in one terminal with their stdout/stderr merged and labelled.
Now additionally you can control individual process by,
# Will try to stop running delayed job by sending SIGINT to the process
~> necro remove dj
# If Process can't be killed by SIGINT send a custom signal
~> necro remove dj -s 9
# add and start running
~> necro add dj
You can also enable OSX notifications for crashed processes by installing terminal-notification
gem. It is not a dependency, but can be useful if something crashed and you weren't paying attention.
FAQs
Unknown package
We found that necro demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.