{"id":50783051,"url":"https://github.com/tmph2003/tool-define-relationship","last_synced_at":"2026-06-12T05:02:34.989Z","repository":{"id":360526065,"uuid":"1219557421","full_name":"tmph2003/tool-define-relationship","owner":"tmph2003","description":"tool-define-relationship","archived":false,"fork":false,"pushed_at":"2026-05-26T18:56:26.000Z","size":184,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-26T20:23:44.261Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/tmph2003.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-04-24T01:59:01.000Z","updated_at":"2026-05-26T18:57:16.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/tmph2003/tool-define-relationship","commit_stats":null,"previous_names":["tmph2003/tool-define-relationship"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/tmph2003/tool-define-relationship","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tmph2003%2Ftool-define-relationship","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tmph2003%2Ftool-define-relationship/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tmph2003%2Ftool-define-relationship/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tmph2003%2Ftool-define-relationship/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tmph2003","download_url":"https://codeload.github.com/tmph2003/tool-define-relationship/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tmph2003%2Ftool-define-relationship/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34229624,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-12T02:00:06.859Z","response_time":109,"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":[],"created_at":"2026-06-12T05:02:33.610Z","updated_at":"2026-06-12T05:02:34.978Z","avatar_url":"https://github.com/tmph2003.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Relationship Designer\n\nA full-stack monorepo application for designing and managing relationships.\n\n## Tech Stack\n\n| Layer    | Technology                        |\n| -------- | --------------------------------- |\n| Frontend | React 18 · TypeScript · Vite · Tailwind CSS |\n| Backend  | Python 3.11 · FastAPI · Uvicorn  |\n| Infra    | Docker · Docker Compose           |\n\n## Project Structure\n\n```\nrelationship-designer/\n├── frontend/                # React + Vite + Tailwind\n│   ├── src/\n│   │   ├── assets/          # Static assets (images, fonts)\n│   │   ├── components/      # Reusable UI components\n│   │   ├── hooks/           # Custom React hooks\n│   │   ├── layouts/         # Page layout wrappers\n│   │   ├── pages/           # Route-level page components\n│   │   ├── services/        # API client \u0026 external services\n│   │   ├── store/           # State management\n│   │   ├── types/           # TypeScript type definitions\n│   │   └── utils/           # Utility functions\n│   └── ...\n├── backend/                 # FastAPI application\n│   ├── app/\n│   │   ├── api/v1/endpoints/  # Versioned API routes\n│   │   ├── core/              # Config, security, dependencies\n│   │   ├── models/            # ORM / domain models\n│   │   ├── schemas/           # Pydantic request/response schemas\n│   │   ├── services/          # Business logic layer\n│   │   └── db/                # Database session \u0026 migrations\n│   └── tests/\n├── docker-compose.yml\n├── .env.example\n├── Makefile\n└── README.md\n```\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js ≥ 18\n- Python ≥ 3.11\n- Docker \u0026 Docker Compose\n\n### Quick Start (Docker)\n\n```bash\n# 1. Clone \u0026 configure\ncp .env.example .env\n\n# 2. Build and run all services\ndocker compose up --build\n```\n\n| Service  | URL                          |\n| -------- | ---------------------------- |\n| Frontend | http://localhost:5173        |\n| Backend  | http://localhost:8000        |\n| API Docs | http://localhost:8000/docs   |\n\n### Local Development\n\n#### Frontend\n\n```bash\ncd frontend\nnpm install\nnpm run dev\n```\n\n#### Backend\n\n```bash\ncd backend\npython -m venv .venv\nsource .venv/bin/activate   # Windows: .venv\\Scripts\\activate\npip install -r requirements.txt\nuvicorn app.main:app --reload\n```\n\n### Useful Commands\n\n```bash\nmake dev          # Start all services via Docker Compose\nmake build        # Build all Docker images\nmake down         # Stop all services\nmake lint         # Run linters for both frontend and backend\nmake test         # Run all tests\n```\n\n## Environment Variables\n\nCopy `.env.example` to `.env` and configure the values. See the file for documentation on each variable.\n\n## License\n\nPrivate — All rights reserved.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftmph2003%2Ftool-define-relationship","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftmph2003%2Ftool-define-relationship","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftmph2003%2Ftool-define-relationship/lists"}