{"id":20725711,"url":"https://github.com/exponentially/helios","last_synced_at":"2025-04-23T18:09:05.579Z","repository":{"id":57504761,"uuid":"149295087","full_name":"exponentially/helios","owner":"exponentially","description":"A Building blocks for elixir CQRS segregated applications","archived":false,"fork":false,"pushed_at":"2019-09-25T11:32:22.000Z","size":184,"stargazers_count":15,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-23T18:08:59.655Z","etag":null,"topics":["cqrs","cqrs-es","cqrs-framework","elixir","elixir-lang","elixir-library","event-sourcing","eventsourcing"],"latest_commit_sha":null,"homepage":null,"language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/exponentially.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2018-09-18T13:43:44.000Z","updated_at":"2024-12-24T17:53:41.000Z","dependencies_parsed_at":"2022-08-30T01:30:41.503Z","dependency_job_id":null,"html_url":"https://github.com/exponentially/helios","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exponentially%2Fhelios","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exponentially%2Fhelios/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exponentially%2Fhelios/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exponentially%2Fhelios/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/exponentially","download_url":"https://codeload.github.com/exponentially/helios/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250487531,"owners_count":21438612,"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":["cqrs","cqrs-es","cqrs-framework","elixir","elixir-lang","elixir-library","event-sourcing","eventsourcing"],"created_at":"2024-11-17T04:20:16.652Z","updated_at":"2025-04-23T18:09:05.546Z","avatar_url":"https://github.com/exponentially.png","language":"Elixir","readme":"[![Hex version badge](https://img.shields.io/hexpm/v/helios.svg)](https://hex.pm/packages/helios)\n[![Build Status](https://travis-ci.org/exponentially/helios.svg?branch=master)](https://travis-ci.org/exponentially/helios)\n[![Coverage Status](https://coveralls.io/repos/github/exponentially/helios/badge.svg?branch=master)](https://coveralls.io/github/exponentially/helios?branch=master)\n\n# Helios\n\nA building blocks for elixir CQRS segregated applications.\n\n## Installation\n\nThe package can be installed by adding `helios` to your list of dependencies in `mix.exs`:\n\n```elixir\ndef deps do\n  [\n    {:helios, \"~\u003e 0.2\"}\n  ]\nend\n```\n\nExample application can be seen [here](https://github.com/exponentially/helios_example)\n\n## Configuration\n\nIt is important to knwo that there is minimum configuration that has to be explicitly \nconfigured in your application, without it application will not work or start.\n\n### Default Event Journal\n```elixir\nuse Mix.Config\n\nconfig :your_app, :default_journal,\n  YourApp.DefaultJournal\n\n# you also need to configure that journal\nconfig :your_app, YourApp.DefaultJournal,\n  adapter: Helios.EventJournal.Adapter.Memory # ETS journal\n  adapter_config: []\n```\n\nor, if you need to persist events over application restarts\n\n```elixir\nuse Mix.Config\n\nconfig :your_app, :default_journal,\n  YourApp.DefaultJournal\n\nconfig :your_app, YourApp.DefaultJournal,\n  adapter: Helios.EventJournal.Adapter.Eventstore\n  adapter_config: [\n    db_type: :node,\n    host: \"localhost\",\n    port: 1113,\n    username: \"admin\",\n    password: \"changeit\",\n    connection_name: \"your_app\",\n    max_attempts: 10\n  ]\n```\n\ndon't forget to add [extreme](https://github.com/exponentially/extreme) dependency to\nyour project `{:extreme, \"~\u003e 0.13\"}`\n\n## Guides\n\n* [Helios Configuration](guides/Configuration.md)\n* [Your First Aggregate Behaviour](guides/Your%20First%20Aggregate.md)\n* [Routing](guides/Routing.md)\n\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexponentially%2Fhelios","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fexponentially%2Fhelios","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexponentially%2Fhelios/lists"}