{"id":47693120,"url":"https://github.com/TimerErTim/plapok","last_synced_at":"2026-04-17T17:01:30.880Z","repository":{"id":343340194,"uuid":"1172019606","full_name":"TimerErTim/plapok","owner":"TimerErTim","description":"Realtime collaborative simple to use planning poker for sprint planning. Uses SpacetimeDB 2.0 and GitHub Pages for hosting.","archived":false,"fork":false,"pushed_at":"2026-03-24T23:37:33.000Z","size":558,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-03T19:36:08.449Z","etag":null,"topics":["nextjs","planning","react","rust","scrum","self-hosted","spacetimedb","sprint"],"latest_commit_sha":null,"homepage":"http://plapok.timerertim.eu/","language":"TypeScript","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/TimerErTim.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,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-03-03T21:30:34.000Z","updated_at":"2026-03-24T23:37:36.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/TimerErTim/plapok","commit_stats":null,"previous_names":["timerertim/plapok"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/TimerErTim/plapok","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimerErTim%2Fplapok","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimerErTim%2Fplapok/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimerErTim%2Fplapok/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimerErTim%2Fplapok/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TimerErTim","download_url":"https://codeload.github.com/TimerErTim/plapok/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimerErTim%2Fplapok/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31937732,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T12:37:54.787Z","status":"ssl_error","status_checked_at":"2026-04-17T12:37:25.095Z","response_time":62,"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":["nextjs","planning","react","rust","scrum","self-hosted","spacetimedb","sprint"],"created_at":"2026-04-02T16:00:20.649Z","updated_at":"2026-04-17T17:01:30.848Z","avatar_url":"https://github.com/TimerErTim.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# 🚀 Plapok\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://plapok.timerertim.eu\"\u003e\u003cimg src=\"./web/public/plapok.svg\" alt=\"Plapok logo\" width=\"128\" /\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\n**Plapok** is a beautiful, minimal planning poker application designed for agile teams who value speed and simplicity. Built with **React**, **HeroUI v3**, and powered by **SpacetimeDB 2.0**, it offers real-time synchronization without the overhead of traditional state management.\n\n## 🛠 Tech Stack\n\n* **Frontend**: React (TSX) + Vite\n* **UI Components**: [HeroUI v3](https://v3.heroui.com/) (formerly NextUI)\n* **Styling**: Tailwind CSS\n* **Backend/Database**: [SpacetimeDB 2.0](https://spacetimedb.com/) (Rust-based server modules)\n* **Runtime/Env Management**: [mise](https://mise.jdx.dev/) (mise-en-place)\n\n---\n\n## 🏗 Setup \u0026 Mise-en-place\n\nWe use **mise** to ensure every contributor has the exact same versions of Node, Rust, and the SpacetimeDB CLI.\n\n### 1. Install mise\n\nIf you don't have it yet:\n\n```bash\ncurl https://mise.jdx.dev/install.sh | sh\n```\n\n### 2. Trust and Install Tools\n\nClone the repo and run:\n\n```bash\n# Setup all runtimes (Node, Rust, SpacetimeDB CLI)\nmise trust\nmise run prepare:web\n```\n\n---\n\n## 🚀 Quick Start\n\n### Backend (SpacetimeDB)\n\nThe backend logic lives in the `/server` directory and is written in Rust.\n\n1. **Start SpacetimeDB locally**:\n```bash\nspacetime start\n```\n\n### Frontend\n\n1. **Install dependencies**:\n```bash\nmise run prepare:web\n```\n\n### Configuration\n\nCreate two files for local deployment:\n\n1. `spacetime.local.json` \n    ```json\n    {\n        \"server\": \"local\",\n        \"database\": \"plapok-01\"\n    }\n    ```\n2. `mise.local.toml` \n    ```toml\n    [env]\n    VITE_SPACETIMEDB_URI = \"http://localhost:3000\"\n    VITE_SPACETIMEDB_MODULE = \"plapok-01\"\n    ```\n\n\n**Run the dev environment**:\n```bash\nmise run dev\n```\n\n---\n\n## 🎮 Features\n\n* **No Accounts**: Just enter a name and a room code.\n* **Real-time**: Powered by SpacetimeDB reducers; no WebSockets to manually manage.\n* **Minimalist UI**: Pastel matte aesthetics with light/dark mode support.\n* **Responsive**: Designed for mobile standby and desktop \"second-screen\" use.\n\n---\n\n## 📜 Contributing\n\n1. Check out a new branch: `git checkout -b feature/cool-feature`\n2. Ensure `mise` has your environment synced.\n3. Submit a PR!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTimerErTim%2Fplapok","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FTimerErTim%2Fplapok","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTimerErTim%2Fplapok/lists"}