{"id":13507775,"url":"https://github.com/ausimian/timelier","last_synced_at":"2026-02-20T12:34:15.121Z","repository":{"id":62430454,"uuid":"78261096","full_name":"ausimian/timelier","owner":"ausimian","description":"A cron-style scheduler application for Elixir.","archived":false,"fork":false,"pushed_at":"2017-09-22T03:27:14.000Z","size":31,"stargazers_count":12,"open_issues_count":2,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-31T22:03:39.424Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Elixir","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/ausimian.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":"2017-01-07T05:42:21.000Z","updated_at":"2023-09-01T10:47:13.000Z","dependencies_parsed_at":"2022-11-01T20:30:44.101Z","dependency_job_id":null,"html_url":"https://github.com/ausimian/timelier","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/ausimian/timelier","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ausimian%2Ftimelier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ausimian%2Ftimelier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ausimian%2Ftimelier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ausimian%2Ftimelier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ausimian","download_url":"https://codeload.github.com/ausimian/timelier/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ausimian%2Ftimelier/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29650915,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-20T09:27:29.698Z","status":"ssl_error","status_checked_at":"2026-02-20T09:26:12.373Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2024-08-01T02:00:38.894Z","updated_at":"2026-02-20T12:34:15.090Z","avatar_url":"https://github.com/ausimian.png","language":"Elixir","funding_links":[],"categories":["Date and Time"],"sub_categories":[],"readme":"# Timelier\n\n[![Hex](https://img.shields.io/hexpm/v/timelier.svg)](https://hex.pm/packages/timelier) [![Build Status](https://travis-ci.org/ausimian/timelier.svg?branch=master)](https://travis-ci.org/ausimian/timelier) [![Coverage Status](https://coveralls.io/repos/github/ausimian/timelier/badge.svg?branch=master)](https://coveralls.io/github/ausimian/timelier?branch=master)\n\nTimelier is a _cron_ style scheduling application for Elixir. It will match a list of time\n'patterns' against the current time and start any tasks associated with each matching pattern.\n\n## Installation\n\n  1. Add `timelier` to your list of dependencies in `mix.exs`:\n\n    \n```elixir\n  def deps do\n    [{:timelier, \"~\u003e 0.9.2\"}]\n  end\n```\n\n  2. To ensure `timelier` can successfully start tasks defined in your application (or\n     its dependencies), add it as an [included application](http://erlang.org/doc/design_principles/included_applications.html):\n\n```elixir\ndef application do\n  [included_applications: [:timelier]]\nend\n```\n    \n   and append it's root supervisor to the list of children that your own top-level\n   supervisor starts, e.g.\n    \n```elixir\ndef start(_type, _args) do\n  import Supervisor.Spec, warn: false\n\n  # Define workers and child supervisors to be supervised\n  children = [\n    worker(YourApp.YourWorker, []),\n    # Other children in your supervision tree...\n\n    supervisor(Timelier.Supervisor, []) # Add timelier's top-level supervisor\n  ]\n\n  opts = [strategy: :one_for_one, name: YourApp.Supervisor]\n  Supervisor.start_link(children, opts)\nend\n```\n    \n## Configuration\n\nThere are three configuration variables that may be specified in the `:timelier` application:\n\n  * `crontab`: The list of crontab entries - see below for a discussion of the format. If not\n      specified, defaults to the empty list.\n  * `timezone`: Either `:local` or `:utc`. This determines how the current time\n     is matched against the crontab entries. If not specified, defaults to `:local`\n  * `provider`: Allows the source of crontab configuration to be overridden. See the hex docs\n     for more information.\n\n### Crontab entry format.\n\nEach entry in the crontab list is a 2-tuple of `{pattern, task}`.\n\n  * The pattern is a 5-tuple of the form `{minute, hour, day, day-of-week, month}`. Both wildcards\n    and alternates may be specified for each entry. See the hex docs for more detail.\n  * The task is a 3-tuple of {module, function, args} as would be passed to `Kernel.apply/3`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fausimian%2Ftimelier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fausimian%2Ftimelier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fausimian%2Ftimelier/lists"}