mirror of
https://github.com/plashchynski/crono.git
synced 2026-01-14 14:23:27 +01:00
Documentation: how to start crono #42
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @brunofacca on GitHub (Feb 3, 2017).
Thanks fo the great gem!
The documentation only explains how to start crono from the command line. I'd like to have it autostarted with a Rails project instead of creating a Linux init script or something. Can it start automatically when Rails is started? Do we need to create an initializer? What are the consequences of running as a daemon vs. not running it as a daemon?
Again, thank you.
@plashchynski commented on GitHub (Mar 7, 2017):
Hello @brunofacca
you can start it using foreman
With a Procfile like:
then:
foreman start@brunofacca commented on GitHub (Mar 8, 2017):
Thank you @plashchynski