{"id":51899264,"url":"https://github.com/hazeliscoding/roze-tree","last_synced_at":"2026-07-26T13:30:47.180Z","repository":{"id":332390514,"uuid":"1133608831","full_name":"hazeliscoding/roze-tree","owner":"hazeliscoding","description":"Personal LinkTree that I use for myself.","archived":false,"fork":false,"pushed_at":"2026-07-16T21:03:39.000Z","size":424,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-07-16T23:53:30.416Z","etag":null,"topics":["angular","linktree-alternative"],"latest_commit_sha":null,"homepage":"https://hazeliscoding.github.io/roze-tree/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hazeliscoding.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":null,"dco":null,"cla":null}},"created_at":"2026-01-13T15:25:14.000Z","updated_at":"2026-07-16T21:03:01.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/hazeliscoding/roze-tree","commit_stats":null,"previous_names":["hazeliscoding/kawaii-linktree","hazeliscoding/hazel-tree","hazeliscoding/roze-tree"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/hazeliscoding/roze-tree","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hazeliscoding%2Froze-tree","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hazeliscoding%2Froze-tree/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hazeliscoding%2Froze-tree/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hazeliscoding%2Froze-tree/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hazeliscoding","download_url":"https://codeload.github.com/hazeliscoding/roze-tree/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hazeliscoding%2Froze-tree/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35916664,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-07-20T02:08:10.276Z","status":"online","status_checked_at":"2026-07-26T02:00:06.503Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["angular","linktree-alternative"],"created_at":"2026-07-26T13:30:46.781Z","updated_at":"2026-07-26T13:30:47.176Z","avatar_url":"https://github.com/hazeliscoding.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🌹 RozeTree\n[![Deployment](https://github.com/hazeliscoding/roze-tree/actions/workflows/deploy.yml/badge.svg?branch=main)](https://github.com/hazeliscoding/roze-tree/actions/workflows/deploy.yml)\n\nA cute, lightweight Linktree-style profile page built with Angular.\nContent is driven by a single JSON file so you can update links, labels, emojis, and profile info without touching the UI.\n\n\u003e 💻 Platform: **Web** (Angular 21)\n\u003e \n\u003e ✨ Features: **light/dark theme**, **sparkle cursor**, **copy-to-clipboard links + toast**\n\n---\n\n## 🛠 Tech Stack\n\n- Angular 21 (standalone components + new control flow)\n- TypeScript\n- RxJS\n- Vitest (via `ng test`)\n- GitHub Pages deploy (`gh-pages`)\n\n---\n\n## 🚀 Running Locally\n\nFrom a terminal in the project root:\n\n```bash\n# 1. Install deps\nnpm install\n\n# 2. Start dev server\nnpm run start\n```\n\nOpen `http://localhost:4200/`.\n\n---\n\n## 🧩 Customization (Your Links + Profile)\n\nEdit your content in [public/assets/site-config.json](public/assets/site-config.json).\n\nSupports:\n\n- `profile`: name, handle, bio, avatar\n- `links[]`: label, url, emoji, description\n- optional link extras:\n\t- `isNew: true` to show a “new” pill\n\t- `copyText` to copy text instead of navigating (shows a toast)\n\nNotes:\n\n- The app loads config from `assets/site-config.json` (relative), so it works correctly when deployed under a sub-path (GitHub Pages).\n- Put images under `public/assets/` and reference them like `assets/avatar.jpg`.\n\n---\n\n## 🏗 Building\n\n```bash\nnpm run build\n```\n\nBuild output goes to `dist/`.\n\n---\n\n## 🧪 Tests\n\n```bash\nnpm run test\n```\n\n---\n\n## 🌍 Deploying (GitHub Pages)\n\nDeploys happen automatically via GitHub Actions on every push to `main` (or `master`).\n\nThe workflow builds with `--base-href /\u003crepo-name\u003e/` automatically (based on the GitHub repository name).\n\nIf you haven’t yet, enable GitHub Pages in your repo settings:\n\n- **Settings → Pages → Build and deployment → Source:** `Deploy from a branch`\n- **Branch:** `gh-pages` (root)\n\nThis repo includes a deploy script that builds for production and publishes `dist/kawaii-linktree/browser` via `gh-pages`:\n\n```bash\nnpm run deploy\n```\n\nIf you’re deploying to a different repo name / sub-path and using the manual script, update the `--base-href` in the `deploy` script in [package.json](package.json).\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhazeliscoding%2Froze-tree","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhazeliscoding%2Froze-tree","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhazeliscoding%2Froze-tree/lists"}