{"id":37786589,"url":"https://github.com/fawni/tamako","last_synced_at":"2026-01-16T15:12:59.309Z","repository":{"id":135767481,"uuid":"523349765","full_name":"fawni/tamako","owner":"fawni","description":"🐞 Cozy anonymous whispers","archived":false,"fork":false,"pushed_at":"2025-08-18T18:50:44.000Z","size":4664,"stargazers_count":4,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-18T19:28:57.251Z","etag":null,"topics":["actix-web","askama","bubbletea","sqlx"],"latest_commit_sha":null,"homepage":"https://tamako.fawn.moe","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"osl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fawni.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-08-10T13:13:55.000Z","updated_at":"2025-08-18T18:50:48.000Z","dependencies_parsed_at":"2023-11-29T17:25:27.840Z","dependency_job_id":"c9e3c2e3-7503-4f48-bf1d-877f2f9a8713","html_url":"https://github.com/fawni/tamako","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fawni/tamako","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fawni%2Ftamako","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fawni%2Ftamako/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fawni%2Ftamako/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fawni%2Ftamako/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fawni","download_url":"https://codeload.github.com/fawni/tamako/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fawni%2Ftamako/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28479406,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"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":["actix-web","askama","bubbletea","sqlx"],"created_at":"2026-01-16T15:12:58.530Z","updated_at":"2026-01-16T15:12:59.298Z","avatar_url":"https://github.com/fawni.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# tamako🐞\n\n[![status-badge](https://ci.codeberg.org/api/badges/12523/status.svg)](https://ci.codeberg.org/repos/12523)\n[![crates.io](https://img.shields.io/crates/v/tamako.svg)](https://crates.io/crates/tamako)\n[![dependency status](https://deps.rs/repo/codeberg/fawn/tamako/status.svg)](https://deps.rs/repo/codeberg/fawn/tamako)\n\ntamako is a cozy, minimalistic, single-user, _anonymous_ whispers service\n\n![scrot](.meta/scrot.png)\n\n## Prerequisites\n\n- [sqlx-cli](https://crates.io/crates/sqlx-cli)\n- a postgresql database\n\n## Environment variables\n\n| Name                      | Type   | Default                   | Notes                                                                                                              |\n| ------------------------- | ------ | ------------------------- | ------------------------------------------------------------------------------------------------------------------ |\n| `TAMAKO_HOST`             | String | 127.0.0.1                 | the host to run the server on                                                                                      |\n| `TAMAKO_PORT`             | u16    | 8715                      | the port to serve the server on                                                                                    |\n| `DATABASE_URL`            | String | _none_                    | the database url. this should be a valid postgresql connection url                                                 |\n| `WEBHOOK_URL`             | String | _none_                    | _(optional)_ the discord webhook url. this will be used to send _private and public_ whispers to a discord channel |\n| `TAMAKO_SECRET`           | String | _none_                    | the secret key used for authentication. think of it like a master password                                         |\n| `TAMAKO_USER_NAME`        | String | tamako                    | _(optional)_ used in the fronted header                                                                            |\n| `TAMAKO_USER_DESCRIPTION` | String | Cozy anonymous whispers 🐞 | _(optional)_ used in the fronted header                                                                            |\n\n## Installation\n\n### Docker Compose (Recommended)\n\nThis will also create a postgres service container.\n\n1. Clone the repo\n2. Configure `docker-compose.yml` to match your setup, most importantly change the environment variables\n3. `docker compose up -d`\n\n### Locally\n\n1. Clone the repo\n2. Rename `.env.example` to `.env` and change env variables inside it\n3. Build tamako: `cargo build --release`\n4. Run tamako: `./target/release/tamako`\n\n### Docker\n\nUsing docker directly is possible, but you have to configure the container yourself.\n\n```sh\ndocker run -d --name tamako --restart unless-stopped -p 8715:8715 fawni/tamako:latest\n```\n\n## TUI\n\ntamako comes with a pretty little tui frontend for it called mochi\n\n![mochi](.meta/mochi.png)\n\n### Installation\n\n```sh\ngo install codeberg.org/fawn/tamako/cmd/mochi@latest\n```\n### Usage\n\n```sh\nmochi --url https://tamako.fawn.moe\n```\n\n`mochi -h` for more info.\n\n## License\n\n[OSL-3.0](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffawni%2Ftamako","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffawni%2Ftamako","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffawni%2Ftamako/lists"}