Skip to main content
  1. All Posts/

Cronify

Tools PHP

Cronify

Simply monitor your Cron

1. Table of Contents

    1. Table of Contents
    1. What is cronify ?
    1. How to install the app ?
    <ul dir="auto">
      <li>
        3.1. <a rel="nofollow noopener" target="_blank" href="#Prerequisites">Prerequisites</a>
      </li>
      <li>
        3.2. <a rel="nofollow noopener" target="_blank" href="#Cloneandinstall">Clone and install</a>
      </li>
      <li>
        3.3. <a rel="nofollow noopener" target="_blank" href="#CreateanewUser">Create a new User</a>
      </li>
    </ul>
    
    1. How to use ?
    <ul dir="auto">
      <li>
        4.1. <a rel="nofollow noopener" target="_blank" href="#CreateanewApp">Create a new App</a>
      </li>
      <li>
        4.2. <a rel="nofollow noopener" target="_blank" href="#CreateanewJob">Create a new Job</a>
      </li>
      <li>
        4.3. <a rel="nofollow noopener" target="_blank" href="#GetCronCodesnippet">Get Cron Code snippet</a>
      </li>
    </ul>
    
    1. How to quickly test Cronify?
    <ul dir="auto">
      <li>
        5.1. <a rel="nofollow noopener" target="_blank" href="#Createadocker-compose.yml"> Create a docker-compose.yml</a>
      </li>
      <li>
        5.2. <a rel="nofollow noopener" target="_blank" href="#Startcontainers">Start containers</a>
      </li>
      <li>
        5.3. <a rel="nofollow noopener" target="_blank" href="#Launchyourbrowserandhavefun">Launch your browser and have fun !</a>
      </li>
    </ul>
    
    1. Build your own Docker image
    1. License

2. What is cronify ?

Cronify is a simple tool to monitor the execution of your cron jobs.
The use is super simple:

  1. Declare one or more applications
  2. Declare one or more jobs for your applications
  3. For each job, you only have to touch three addresses to log the execution:
    • An address to start a cron
    • An address to stop a cron
    • An address to indicate an error

3. How to install the app ?

Cronify is a simple Symfony/PHP/PostgreSQL application.
This documentation offers a simplified installation FOR DEVELOPMENT ONLY with Docker. You can do without it if you already have PostgreSQL.

3.1. Prerequisites

3.2. Clone and install

git clone https://github.com/yoanbernabeu/Cronify.git
cd Cronify
make install

3.3. Create a new User

User creation is possible from the command line.

symfony console app:create-user username@mail.com password

4. How to use ?

Only THREE steps to get your cron job monitoring addresses !

4.1. Create a new App

4.2. Create a new Job

4.3. Get Cron Code snippet

5. How to quickly test Cronify?

We offer you a quick method to test the application with the use of a preconfigured Docker container.

5.1. Create a docker-compose.yml

version: '3'

services:
  database:
    image: postgres:${POSTGRES_VERSION:-13}-alpine
    environment:
      POSTGRES_DB: ${POSTGRES_DB:-app}
      POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-ChangeMe}
      POSTGRES_USER: ${POSTGRES_USER:-symfony}
    volumes:
      - db-data:/var/lib/postgresql/data:rw

  app:
    image: yoanbernabeu/cronify:latest
    ports:
      - "8080:80"
    environment:
      DATABASE_URL: postgres://${POSTGRES_USER:-symfony}:${POSTGRES_PASSWORD:-ChangeMe}@database:5432/${POSTGRES_DB:-app}

volumes:
  db-data:

5.2. Start containers

docker-compose up -d

5.3. Launch your browser and have fun !

6. Build your own Docker image

If you want to build your own Docker image, we provide a make command that you need to adapt to your context.
Do not run the command without modifications, you would not have the rights to upload the image to the Docker Hub.

make docker-build-and-push

7. License

See the bundled LICENSE file.