{"id":20563799,"url":"https://github.com/azohra/memo_generator","last_synced_at":"2026-03-07T07:32:58.113Z","repository":{"id":57524710,"uuid":"149670608","full_name":"azohra/memo_generator","owner":"azohra","description":"An elixir application to generate memos based on your team's Trello board","archived":false,"fork":false,"pushed_at":"2018-10-16T14:35:53.000Z","size":172,"stargazers_count":2,"open_issues_count":1,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-01T01:02:03.315Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/azohra.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-09-20T21:05:18.000Z","updated_at":"2023-12-18T04:31:07.000Z","dependencies_parsed_at":"2022-09-26T18:11:50.810Z","dependency_job_id":null,"html_url":"https://github.com/azohra/memo_generator","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/azohra/memo_generator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azohra%2Fmemo_generator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azohra%2Fmemo_generator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azohra%2Fmemo_generator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azohra%2Fmemo_generator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/azohra","download_url":"https://codeload.github.com/azohra/memo_generator/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azohra%2Fmemo_generator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30209735,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T05:23:27.321Z","status":"ssl_error","status_checked_at":"2026-03-07T05:00:17.256Z","response_time":53,"last_error":"SSL_read: 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-11-16T04:21:03.001Z","updated_at":"2026-03-07T07:32:58.097Z","avatar_url":"https://github.com/azohra.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MemoGenerator\n\n### An Elixir application to generate a memo by scraping your team's trello boards.\n\n![Sample Memo](docs/sample.png \"Sample Memo\")\n\n## Installation\n\nIf [available in Hex](https://hex.pm/docs/publish), the package can be installed\nby adding `memo_generator` to your list of dependencies in `mix.exs`:\n\n```elixir\ndef deps do\n  [\n    {:memo_generator, \"~\u003e 0.1.0\"}\n  ]\nend\n```\n\n## Configuration\n\n```elixir\n# Used to Authenticate your bot into the Trello workspace\nconfig :memo_generator, api_key: System.get_env(\"TRELLO_API_KEY\")\nconfig :memo_generator, api_token: System.get_env(\"TRELLO_API_TOKEN\")\n```\n\n## Functions\n\n```Elixir\n  # Customize what attributes you want on your memo\n  \n  # You can chose between a text splash\n  attributes = %{splash: \"\u003cp\u003ePlease read carefully\u003c/p\u003e\"}\n  \n  # A company logo\n  attributes = %{logo: \"https://www.company.com/logo\"}\n  \n  # Or both\n  attributes = %{splash: \"\u003cp\u003ePlease read carefully\u003c/p\u003e\", logo: \"https://www.company.com/logo\"}\n\n\n  # To generate a memo for all boards with no added attributes\n  def go(:all, filename, title) do\n  #   ...\n  end\n\n  # To generate a memo for a list of  boards with no added attributes\n  def go([\"Board_1\", \"Board_2\"], filename, title) do\n  #   ...\n  end\n\n  # To generate a memo for all boards with added attributes\n  def go(:all, filename, title, attributes) do\n  #   ...\n  end\n\n  # To generate a memo for a list of  boards with added attributes\n  def go([\"Board_1\", \"Board_2\"], filename, title, attributes) do\n  #   ...\n  end\n\n  # To return a list of all boards the application has access to\n  def get_all_board_names do\n  # ...\n  end\n\n  # To delete a rendered memo from your file system\n  def delete(filename) do\n  # ...\n  end\n```\n\n## Usage Examples\n\n### Use the function within your Elixir application...\n\n```Elixir\n  # ... inside your application\n\n  def your_api(conn, assigns) do\n    %{\n      board_list: boards,\n      title: title,\n      filename: filename,\n      opts: opts,\n      ...\n    } = assigns\n\n    MemoGenerator.go(boards, filename, title, opts)\n\n    send_file(conn, filename)\n\n    MemoGenerator.delete(filename)\n\n    conn\n  end\n```\n\n### or you can use it through iex\n```console\niex(1)\u003e MemoGenerator.go([\"Backlog\", \"Secret Project\"], \"eCommerce-memo.md\", \"Weekly Memo - eCommerce\", %{logo: \"https://www.company.com/logo\"})\n\n16:04:44.341 [info]  Rendered logo\n\n16:04:44.355 [info]  Rendered all cards for list: Backlog\n \n16:04:44.430 [info]  Rendered all cards for list: Focused\n \n16:04:44.502 [info]  Rendered all cards for list: Doing\n \n16:04:44.586 [info]  Rendered all cards for list: Done\n \n16:04:44.587 [info]  Rendered all cards and lists for board: Main\n \n16:04:44.745 [info]  Rendered all cards for list: Backlog\n \n16:04:44.820 [info]  Rendered all cards for list: Focused\n \n16:04:44.897 [info]  Rendered all cards for list: Doing\n \n16:04:44.974 [info]  Rendered all cards for list: Done\n \n16:04:44.974 [info]  Rendered all cards and lists for board: Secret Project\n\n16:04:44.974 [info]  Finished rendering: Weekly Memo - eCommerce, into file: eCommerce-memo.md\n\n:ok\n```\n\n\u003cp\u003eCreated with \u0026#x2665; by Azohra.\u003cp\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazohra%2Fmemo_generator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fazohra%2Fmemo_generator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazohra%2Fmemo_generator/lists"}