{"id":18074521,"url":"https://github.com/codehearts/remembear","last_synced_at":"2025-04-12T05:53:08.906Z","repository":{"id":38330425,"uuid":"272620015","full_name":"codehearts/remembear","owner":"codehearts","description":"🐻 Self-hosted web app for recurring reminders","archived":false,"fork":false,"pushed_at":"2025-03-09T21:33:48.000Z","size":192,"stargazers_count":2,"open_issues_count":14,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-12T05:52:58.721Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","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/codehearts.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","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":"2020-06-16T05:44:42.000Z","updated_at":"2024-10-02T12:02:32.000Z","dependencies_parsed_at":"2023-11-16T13:47:17.848Z","dependency_job_id":"258a77a2-c5d1-4412-9052-79348e21c10e","html_url":"https://github.com/codehearts/remembear","commit_stats":{"total_commits":77,"total_committers":4,"mean_commits":19.25,"dds":0.1428571428571429,"last_synced_commit":"10c6e78a93eaef5e04db508432c456db4d674391"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codehearts%2Fremembear","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codehearts%2Fremembear/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codehearts%2Fremembear/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codehearts%2Fremembear/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codehearts","download_url":"https://codeload.github.com/codehearts/remembear/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248525156,"owners_count":21118616,"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":[],"created_at":"2024-10-31T10:13:27.845Z","updated_at":"2025-04-12T05:53:08.856Z","avatar_url":"https://github.com/codehearts.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🐻 Remembear\n\n[![Build Status][build-badge]][build-link] [![Code Coverage][coverage-badge]][coverage-link] [![Rust Crate][crates-badge]][crates-link] [![Documentation][docs-badge]][docs-link]\n\nSelf-hosted web app for recurring reminders\n\nRemembear was created to manage household chores but can be used for medication reminders, appointment notifications, and anything else occuring on a regular weekly or daily basis!\n\n## Installation\n\nRemembear is still under active development but will be available as a binary and Docker container once released. Until then, you can check out the [contributor guidelines](https://github.com/codehearts/remembear/blob/master/CONTRIBUTING.md) for steps to build and run remembear locally\n\n## Configuration\n\nRemembear is configured by `remembear.yml` in the directory it's run from. A default configuration file is provided by this repo\n\n### Integrations\n\nIntegrations can be configured by defining them in an `integrations` section in `remembear.yml`. To use an integration, `enabled` _must_ be set to `true`:\n\n```yaml\nintegrations:\n  console:\n    enabled: true\n```\n\n## Usage\n\n### CLI Usage\n\nSubcommand | Description | Usage\n---------- | ----------- | -----\nStart | Starts the scheduler, running until the process is killed | `remembear start`\nIntegration | Provides a per-integration CLI interface | `remembear integration \u003cintegration\u003e [subcommand..]`\n\n#### Users\n\nSubcommand | Description | Usage\n---------- | ----------- | -----\nAdd | Adds a new user | `remembear user add \u003cname\u003e`\nList | Lists all users as a JSON array | `remembear user list`\nUpdate | Updates an existing user | `remembear user update \u003cuid\u003e [-n name]`\nRemove | Removes a user by their uid | `remembear user remove \u003cuid\u003e`\n\n#### Reminders\n\nSubcommand | Description | Usage\n---------- | ----------- | -----\nAdd | Adds a new reminder | `remembear reminder add \u003cname\u003e \u003cschedule\u003e [assignees..]`\nList | Lists all reminders as a JSON array | `remembear reminder list`\nUpdate | Updates an existing reminder | `remembear reminder update \u003cuid\u003e [-n\\|--name name] [-s\\|--schedule schedule] [-a\\|--assignees assignees..]`\nRemove | Removes a reminder by its uid | `remembear reminder remove \u003cuid\u003e`\n\nNote that schedules are in UTC and use the following format:\n\n```\n{\n  \"mon\": [\"12:30:00\"],\n  \"wed\": [\"10:00:00\", \"22:00:00\"]\n}\n```\n\n#### Integrations\n\n##### Console\n\nSubcommand | Description | Usage\n---------- | ----------- | -----\nColor | Sets the color to display a user's name in | `remembear integration console color \u003cuid\u003e \u003ccolor_word\u003e`\nRemove | Removes the color set for a user | `remembear integration console remove \u003cuid\u003e`\n\n## Development\n\nIf you'd like to contribute to remembear's development, [CONTRIBUTING.md](https://github.com/codehearts/remembear/blob/master/CONTRIBUTING.md) will get you started. You can also [open an issue](https://github.com/codehearts/remembear/issues/new) for any bugs or feature requests, that's just as valuable as code contributions!\n\n[build-badge]:    https://img.shields.io/github/workflow/status/codehearts/remembear/Build/master?logo=github\u0026logoColor=white\n[build-link]:     https://github.com/codehearts/remembear/actions?query=workflow%3ABuild+branch%3Amaster\n[coverage-badge]: https://img.shields.io/codecov/c/github/codehearts/remembear?logo=codecov\u0026logoColor=white\n[coverage-link]:  https://codecov.io/gh/codehearts/remembear\n[crates-badge]:   https://img.shields.io/crates/v/remembear?logo=rust\u0026logoColor=white\n[crates-link]:    https://crates.io/crates/remembear\n[docs-badge]:     https://docs.rs/remembear/badge.svg\n[docs-link]:      https://docs.rs/remembear\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodehearts%2Fremembear","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodehearts%2Fremembear","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodehearts%2Fremembear/lists"}