{"id":20731004,"url":"https://github.com/tyalt1/auto_ex","last_synced_at":"2025-08-01T13:04:56.221Z","repository":{"id":93257196,"uuid":"124277337","full_name":"tyalt1/auto_ex","owner":"tyalt1","description":"An event-driven automation framework for Elixir.","archived":false,"fork":false,"pushed_at":"2018-07-09T20:53:47.000Z","size":16,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-11T10:19:48.417Z","etag":null,"topics":["elixir","elixir-library","elixir-programming-language"],"latest_commit_sha":null,"homepage":null,"language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tyalt1.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-03-07T18:27:52.000Z","updated_at":"2024-06-18T15:48:45.000Z","dependencies_parsed_at":"2023-03-11T15:45:41.315Z","dependency_job_id":null,"html_url":"https://github.com/tyalt1/auto_ex","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tyalt1/auto_ex","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tyalt1%2Fauto_ex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tyalt1%2Fauto_ex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tyalt1%2Fauto_ex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tyalt1%2Fauto_ex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tyalt1","download_url":"https://codeload.github.com/tyalt1/auto_ex/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tyalt1%2Fauto_ex/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268229216,"owners_count":24217007,"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","status":"online","status_checked_at":"2025-08-01T02:00:08.611Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["elixir","elixir-library","elixir-programming-language"],"created_at":"2024-11-17T05:13:26.572Z","updated_at":"2025-08-01T13:04:56.184Z","avatar_url":"https://github.com/tyalt1.png","language":"Elixir","readme":"# AutoEx\n\nAn event-driven automation framework for Elixir.\n\n## Installation\n\nIf [available in Hex](https://hex.pm/docs/publish), the package can be installed\nby adding `auto_ex` to your list of dependencies in `mix.exs`:\n\n```elixir\ndef deps do\n  [\n    {:auto_ex, \"~\u003e 0.1.0\"}\n  ]\nend\n```\n\nDocumentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)\nand published on [HexDocs](https://hexdocs.pm). Once published, the docs can\nbe found at [https://hexdocs.pm/auto_ex](https://hexdocs.pm/auto_ex).\n\n## Documentation\n\n### Signal\n\nA signal is an event that triggers all actions linked to it.\n\n```elixir\nalias AutoEx.Signal\n\n{:ok, pid} = Signal.start_link()\nSignal.run(pid)\n```\n\n### Action\n\nAn action is a stand alone function.\n\n```elixir\nalias AutoEx.Action\n\naction = Action.new(fn -\u003e IO.puts \"Performing action!\" end)\nAction.run(action)\n```\n\n### Link Signal with Actions\n\nWhen an action is added to a signal, it is run whenever the signal is.\n\n```elixir\nalias AutoEx.{Signal, Action}\n\n{:ok, signal} = Signal.start_link()\naction = Action.new(fn -\u003e IO.puts \"Performing action!\" end)\nSignal.add_action(signal, action)\nSingal.run(signal)\n```\n\n### Resource\n\nAdvantages on Resource:\n- crud semantics\n- persistance\n\n## TODO\n- Tests!\n- Action retry\n- Logging when signal is fired\n- Logging when action is executed (successful/failure)\n- persistance for resource\n- documenting resource\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftyalt1%2Fauto_ex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftyalt1%2Fauto_ex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftyalt1%2Fauto_ex/lists"}