{"id":48789363,"url":"https://github.com/zeljkovranjes/terminal-chat-system","last_synced_at":"2026-04-13T19:02:49.537Z","repository":{"id":171174182,"uuid":"622610443","full_name":"zeljkovranjes/terminal-chat-system","owner":"zeljkovranjes","description":"A unified chat platform that lives in the terminal, utilizing gRPC, REST, and OAuth2 to connect and secure conversations.","archived":false,"fork":false,"pushed_at":"2023-06-04T01:56:59.000Z","size":186,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-22T04:28:18.665Z","etag":null,"topics":["chat","grpc","oauth2","oauth2-discord","rest-api","rust","simple"],"latest_commit_sha":null,"homepage":"https://www.youtube.com/watch?v=gq852Cxr980","language":"Rust","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/zeljkovranjes.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}},"created_at":"2023-04-02T16:07:50.000Z","updated_at":"2024-02-28T02:13:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"b8b76775-3dd8-4b62-a2d3-b5b670dda084","html_url":"https://github.com/zeljkovranjes/terminal-chat-system","commit_stats":null,"previous_names":["okjlez/chatnexus","chomnr/chatnexus","wsbokft/terminal-chat-system","chomnr/terminal-chat-system","zeljkovranjes/terminal-chat-system"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/zeljkovranjes/terminal-chat-system","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeljkovranjes%2Fterminal-chat-system","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeljkovranjes%2Fterminal-chat-system/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeljkovranjes%2Fterminal-chat-system/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeljkovranjes%2Fterminal-chat-system/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zeljkovranjes","download_url":"https://codeload.github.com/zeljkovranjes/terminal-chat-system/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeljkovranjes%2Fterminal-chat-system/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31766482,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T15:25:13.801Z","status":"ssl_error","status_checked_at":"2026-04-13T15:25:09.162Z","response_time":93,"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":["chat","grpc","oauth2","oauth2-discord","rest-api","rust","simple"],"created_at":"2026-04-13T19:02:44.491Z","updated_at":"2026-04-13T19:02:49.512Z","avatar_url":"https://github.com/zeljkovranjes.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ChatNexus\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://app.codacy.com/gh/chomnr/ChatNexus/dashboard?utm_source=gh\u0026utm_medium=referral\u0026utm_content=\u0026utm_campaign=Badge_grade\"\u003e\u003cimg src=\"https://app.codacy.com/project/badge/Grade/2fa43e5859d34135b08ed7132c3cadf4\"/\u003e\u003c/a\u003e\n  \u003cimg src=\"https://img.shields.io/github/commit-activity/m/chomnr/chatnexus?color=ff69b4\"/\u003e\n  \u003cimg src=\"https://img.shields.io/github/repo-size/chomnr/chatnexus\"/\u003e\n\u003c/p\u003e\n\nVideo Preview\u003cbr\u003e\nhttps://www.youtube.com/watch?v=gq852Cxr980\n\nJust another centralized chat system.\n\u003cbr\u003e\n\u003cbr\u003e\nAuthentication is done through Discord's OAuth2 API. The chat messages are transmitted through gRPC. The status of everything is kept up to date with Redis.\n\u003cbr\u003e\n\u003cbr\u003e\nNice and simple. I think.\n\n## Getting started\nThe only external dependency you need is Redis. \n\u003cbr\u003e\n1. Install [Redis](https://redis.io/download/)\n\n### Configuring env\n```\nREDIS_HOST = \"\"\nREDIS_USERNAME = \"\"\nREDIS_PASSWORD = \"\"\nREDIS_PORT = \"\"\nREDIS_DATABASE = \"\"\n\nOAUTH2_ENDPOINT = \"https://discord.com/api/v10\"\nOAUTH2_AUTHORIZE = \"https://discord.com/oauth2/authorize\"\nOAUTH2_TOKEN = \"https://discord.com/api/oauth2/token\"\nOAUTH2_SCOPES = \"identify\"\nOAUTH2_CLIENT_ID = \"\"\nOAUTH2_CLIENT_SECRET = \"\"\nOAUTH2_REDIRECT_URI = \"\"\n\n\nWEB_SECRET_KEY = \"RANDOM VALUE HERE.\"\n```\n### Running the servers and client\n```bash\ngit clone https://github.com/chomnr/ChatNexus.git\ncd chatnexus\ncargo build\n\n# Running the chat server.\ncd chatnexus-chat\ncargo run\n\n# Running the web server.\ncd chatnexus-web\ncargo run\n\n# Running the client.\ncd chatnexus-client\ncargo run\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeljkovranjes%2Fterminal-chat-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzeljkovranjes%2Fterminal-chat-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeljkovranjes%2Fterminal-chat-system/lists"}