{"id":24468820,"url":"https://github.com/yoanbernabeu/cronify","last_synced_at":"2025-04-13T09:42:27.446Z","repository":{"id":41122158,"uuid":"468338536","full_name":"yoanbernabeu/Cronify","owner":"yoanbernabeu","description":"Simply monitor your Cron","archived":false,"fork":false,"pushed_at":"2022-11-25T09:06:14.000Z","size":1617,"stargazers_count":251,"open_issues_count":1,"forks_count":27,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-03-27T01:11:13.868Z","etag":null,"topics":["cron","monitoring","symfony","tool"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yoanbernabeu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-03-10T12:44:00.000Z","updated_at":"2025-03-22T19:45:32.000Z","dependencies_parsed_at":"2023-01-21T18:02:47.107Z","dependency_job_id":null,"html_url":"https://github.com/yoanbernabeu/Cronify","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yoanbernabeu%2FCronify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yoanbernabeu%2FCronify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yoanbernabeu%2FCronify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yoanbernabeu%2FCronify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yoanbernabeu","download_url":"https://codeload.github.com/yoanbernabeu/Cronify/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248693541,"owners_count":21146817,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cron","monitoring","symfony","tool"],"created_at":"2025-01-21T07:13:14.910Z","updated_at":"2025-04-13T09:42:27.404Z","avatar_url":"https://github.com/yoanbernabeu.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cronify\n\nSimply monitor your Cron\n\n[![Pipeline-CI](https://github.com/yoanbernabeu/cronify/actions/workflows/ci.yml/badge.svg)](https://github.com/yoanbernabeu/cronify/actions/workflows/ci.yml) [![MIT License](https://img.shields.io/apm/l/atomic-design-ui.svg?)](LICENSE)\n\n\n![Logo](public/img/logo_ban.png)\n\n---\n\n##  1. \u003ca name='TableofContents'\u003e\u003c/a\u003eTable of Contents\n\n\u003c!-- vscode-markdown-toc --\u003e\n* 1. [Table of Contents](#TableofContents)\n* 2. [What is cronify ?](#Whatiscronify)\n* 3. [How to install the app ?](#Howtoinstalltheapp)\n\t* 3.1. [Prerequisites](#Prerequisites)\n\t* 3.2. [Clone and install](#Cloneandinstall)\n\t* 3.3. [Create a new User](#CreateanewUser)\n* 4. [How to use ?](#Howtouse)\n\t* 4.1. [Create a new App](#CreateanewApp)\n\t* 4.2. [Create a new Job](#CreateanewJob)\n\t* 4.3. [Get Cron Code snippet](#GetCronCodesnippet)\n* 5. [How to quickly test Cronify?](#HowtoquicklytestCronify)\n\t* 5.1. [ Create a docker-compose.yml](#Createadocker-compose.yml)\n\t* 5.2. [Start containers](#Startcontainers)\n\t* 5.3. [Launch your browser and have fun !](#Launchyourbrowserandhavefun)\n* 6. [ Build your own Docker image](#BuildyourownDockerimage)\n* 7. [License](#License)\n\n\u003c!-- vscode-markdown-toc-config\n\tnumbering=true\n\tautoSave=true\n\t/vscode-markdown-toc-config --\u003e\n\u003c!-- /vscode-markdown-toc --\u003e\n\n---\n\n##  2. \u003ca name='Whatiscronify'\u003e\u003c/a\u003eWhat is cronify ?\n\nCronify is a simple tool to monitor the execution of your cron jobs.\n\nThe use is super simple:\n1. Declare one or more applications\n2. Declare one or more jobs for your applications\n3. For each job, you only have to touch three addresses to log the execution:\n    - An address to start a cron\n    - An address to stop a cron\n    - An address to indicate an error\n\n##  3. \u003ca name='Howtoinstalltheapp'\u003e\u003c/a\u003eHow to install the app ?\n\nCronify is a simple Symfony/PHP/PostgreSQL application.\n\nThis documentation offers a simplified installation FOR DEVELOPMENT ONLY with Docker. You can do without it if you already have PostgreSQL.\n\n###  3.1. \u003ca name='Prerequisites'\u003e\u003c/a\u003ePrerequisites\n\n- [PHP 8.1](https://www.php.net/downloads.php)\n- [Composer](https://getcomposer.org/)\n- [Docker](https://www.docker.com/)\n- [Make](https://www.gnu.org/software/make/)\n- [Symfony CLI](https://symfony.com/download)\n\n###  3.2. \u003ca name='Cloneandinstall'\u003e\u003c/a\u003eClone and install\n\n```bash\ngit clone https://github.com/yoanbernabeu/Cronify.git\ncd Cronify\nmake install\n```\n\n###  3.3. \u003ca name='CreateanewUser'\u003e\u003c/a\u003eCreate a new User\n\nUser creation is possible from the command line.\n\n```bash\nsymfony console app:create-user username@mail.com password\n```\n\n##  4. \u003ca name='Howtouse'\u003e\u003c/a\u003eHow to use ?\n\nOnly THREE steps to get your cron job monitoring addresses !\n\n###  4.1. \u003ca name='CreateanewApp'\u003e\u003c/a\u003eCreate a new App\n\n![Create App](.doc/create_app.gif)\n\n###  4.2. \u003ca name='CreateanewJob'\u003e\u003c/a\u003eCreate a new Job\n\n![Create Job](.doc/create_job.gif)\n\n###  4.3. \u003ca name='GetCronCodesnippet'\u003e\u003c/a\u003eGet Cron Code snippet\n\n![Get Cron Code snippet](.doc/get_cron_code_snippet.gif)\n\n##  5. \u003ca name='HowtoquicklytestCronify'\u003e\u003c/a\u003eHow to quickly test Cronify?\n\nWe offer you a quick method to test the application with the use of a preconfigured Docker container.\n\n###  5.1. \u003ca name='Createadocker-compose.yml'\u003e\u003c/a\u003e Create a docker-compose.yml\n\n```yaml\nversion: '3'\n\nservices:\n  database:\n    image: postgres:${POSTGRES_VERSION:-13}-alpine\n    environment:\n      POSTGRES_DB: ${POSTGRES_DB:-app}\n      POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-ChangeMe}\n      POSTGRES_USER: ${POSTGRES_USER:-symfony}\n    volumes:\n      - db-data:/var/lib/postgresql/data:rw\n\n  app:\n    image: yoanbernabeu/cronify:latest\n    ports:\n      - \"8080:80\"\n    environment:\n      DATABASE_URL: postgres://${POSTGRES_USER:-symfony}:${POSTGRES_PASSWORD:-ChangeMe}@database:5432/${POSTGRES_DB:-app}\n\nvolumes:\n  db-data:\n```\n\n###  5.2. \u003ca name='Startcontainers'\u003e\u003c/a\u003eStart containers\n\n```bash\ndocker-compose up -d\n```\n\n###  5.3. \u003ca name='Launchyourbrowserandhavefun'\u003e\u003c/a\u003eLaunch your browser and have fun !\n\n- Go to http://localhost:8080\n- Login with :\n\t- username: demo@demo.com\n\t- password: password\n\n##  6. \u003ca name='BuildyourownDockerimage'\u003e\u003c/a\u003e Build your own Docker image\n\nIf you want to build your own Docker image, we provide a make command that you **need to adapt to your context**.\n\n*Do not run the command without modifications, you would not have the rights to upload the image to the Docker Hub.*\n\n```bash\nmake docker-build-and-push\n```\n\n##  7. \u003ca name='License'\u003e\u003c/a\u003eLicense\n\nSee the bundled [LICENSE](LICENCE) file.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyoanbernabeu%2Fcronify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyoanbernabeu%2Fcronify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyoanbernabeu%2Fcronify/lists"}