{"id":13600221,"url":"https://github.com/pandodao/talkee","last_synced_at":"2025-07-21T00:35:01.029Z","repository":{"id":144486225,"uuid":"597318124","full_name":"pandodao/talkee","owner":"pandodao","description":"An Open-source Web3 Commenting and Chat tool with Ethereum Login \u0026 Wallets","archived":false,"fork":false,"pushed_at":"2023-04-24T12:22:42.000Z","size":262,"stargazers_count":44,"open_issues_count":0,"forks_count":1,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-07-08T16:47:57.656Z","etag":null,"topics":["comments"],"latest_commit_sha":null,"homepage":"https://pando.im/talkee","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pandodao.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}},"created_at":"2023-02-04T06:47:31.000Z","updated_at":"2025-06-13T14:03:10.000Z","dependencies_parsed_at":"2023-05-15T06:00:39.993Z","dependency_job_id":null,"html_url":"https://github.com/pandodao/talkee","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/pandodao/talkee","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pandodao%2Ftalkee","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pandodao%2Ftalkee/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pandodao%2Ftalkee/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pandodao%2Ftalkee/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pandodao","download_url":"https://codeload.github.com/pandodao/talkee/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pandodao%2Ftalkee/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266221464,"owners_count":23894966,"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":["comments"],"created_at":"2024-08-01T18:00:32.636Z","updated_at":"2025-07-21T00:35:01.013Z","avatar_url":"https://github.com/pandodao.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"# Talkee\n\nAn Open-source Web3 Commenting and Chat tool with Ethereum Login \u0026 Wallets\n\n## Demo\n\n- Comment Demo: https://developers.pando.im/demo/comment-demo.html\n- Chat Demo: https://developers.pando.im/demo/chat-demo.html\n\n## Create your own\n\nPlease visit [Pando Developers Console](https://developers.pando.im/console/talkee) to create your own Talkee sites.\n\n## Integration\n\nPlease visit [this page](https://developers.pando.im/guide/talkee.html) to integrate Talkee into your site.\n\n## Features\n\n- [x] 💻 One-Click Installation\n- [x] 🤑 Ethereum Login by Metamask or WalletConnect Wallets\n- [x] 💬 Instant Chat APIs (UI in the process)\n- [x] 👍 Reply, Like, Share. \n- [x] 🌐 Content on the Blockchain (Arweave right now, IPFS and others in the process)\n- [x] 💰 Token AirDrop On-Demand\n- [ ] 🔔 Notifications\n- [ ] 🔑 Comment/ChatRoom Requirements: crypto requirement for people access your comment threads or chat room\n- [ ] 🚫 Anti-Spam Integration \u0026 Moderation tools\n- [ ] 🧑🏻‍💼 User Profile and Reputation\n- [ ] 🤝 Transfer crypto to other users\n- [ ] 📥 Import Comments from Disqus, Commento, etc\n- [ ] 📤 Export Comments\n\n## Installation\n\n```bash\ngit clone https://github.com/pandodao/talkee.git\ncd talkee\ngo build\n```\n\n## Preqrequisites\n\nYou need to have a running postgresql database, a keystore file from [Mixin Developers](https://developers.mixin.one/dashboard).\n\nTo enable \"Content on the Blockchain\" feature, you also need an arweave wallet file from [Arweave](https://docs.arweave.org/info/wallets/arweave-wallet) and put it under `keystores/wallet.json` of working directory.\n\n\n## Configuration\n\nCreate a config file `config.yaml` in the working directory.\n\n```yaml\n# database config\ndb:\n  driver: \"postgres\"\n  datasource: \"user=foobar dbname=talkee host=localhost password=foobar sslmode=disable\"\n\n# auth config\nauth:\n  # a random string to generate jwt token\n  jwt_secret: \"112233\"\n  # please get it from https://developers.mixin.one/dashboard\n  mixin_client_secret: \"..\"\n\n# optional, not implemented yet\naws:\n  key: \"\"\n  secret: \"\"\n  region: \"\"\n  bucket: \"\"\n\n# optional, not implemented yet\nsys:\n  attachment_base: \"http://..\"\n```\n\n## Run the services manually\n\nrun migrate database\n\n```bash\n./talkee migrate up\n```\n\nrun `./talkee help` to see full commands\n\nrun workers\n\n```bash\n./talkee -f YOUR_KEYSTORE_FILE worker\n```\n\nrun websocket server\n\n```bash\n./talkee -f YOUR_KEYSTORE_FILE wss [port] \n```\n\nrun httpd server\n\n```bash\n./talkee -f YOUR_KEYSTORE_FILE httpd [port] \n```\n\n## Run the services in docker\n\nbuild image\n```bash\ndocker build -t talkee:latest .\n```\n\ncreate docker-compose.yml\n\n```bash\nversion: \"3.4\"\nx-volumes: \u0026default-volumes\n  - \"./keystores:/app/keystores\"\n  - \"./config.yaml:/app/config.yaml\"\nservices:\n  api:\n    image: talkee:latest\n    entrypoint: [\"/app/talkee\", \"--file\",\"YOUR_KEYSTORE_FILE\", \"httpd\", \"80\"]\n    ports:\n      - \"8080:80\"\n    volumes: *default-volumes\n\n  wss:\n    image: talkee:latest\n    entrypoint: [\"/app/talkee\", \"--file\",\"YOUR_KEYSTORE_FILE\", \"wss\", \"80\"]\n    ports:\n      - \"8081:80\"\n\n  worker:\n    image: talkee:latest    \n    entrypoint: [\"/app/talkee\", \"--file\",\"YOUR_KEYSTORE_FILE\", \"worker\", \"80\"]\n    ports:\n      - \"8090:80\"\n```\n\nrun via docker-compose\n```bash\ndocker-compose up -d \n```\n\nrun database migration \n```bash\ndocker run  --rm -ti -v [YOUR_CONFIG_FILE]:/app/config.yaml talkee:latest /app/talkee migrate\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpandodao%2Ftalkee","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpandodao%2Ftalkee","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpandodao%2Ftalkee/lists"}