{"id":44281980,"url":"https://github.com/argondev22/template.development","last_synced_at":"2026-02-10T21:36:24.681Z","repository":{"id":322429479,"uuid":"1089454466","full_name":"argondev22/template.development","owner":"argondev22","description":"Template for Development","archived":false,"fork":false,"pushed_at":"2026-01-20T21:07:29.000Z","size":117,"stargazers_count":0,"open_issues_count":13,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-21T06:44:38.128Z","etag":null,"topics":["development","template","template-repository"],"latest_commit_sha":null,"homepage":"","language":"Python","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/argondev22.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/CONTRIBUTING.md","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":null,"dco":null,"cla":null}},"created_at":"2025-11-04T11:15:25.000Z","updated_at":"2026-01-20T21:09:02.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/argondev22/template.development","commit_stats":null,"previous_names":["argondev22/template.development"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/argondev22/template.development","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/argondev22%2Ftemplate.development","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/argondev22%2Ftemplate.development/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/argondev22%2Ftemplate.development/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/argondev22%2Ftemplate.development/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/argondev22","download_url":"https://codeload.github.com/argondev22/template.development/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/argondev22%2Ftemplate.development/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29317959,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-10T20:44:44.282Z","status":"ssl_error","status_checked_at":"2026-02-10T20:44:43.393Z","response_time":65,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["development","template","template-repository"],"created_at":"2026-02-10T21:36:23.657Z","updated_at":"2026-02-10T21:36:24.604Z","avatar_url":"https://github.com/argondev22.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Template for Development\n\n## Overview\n\nA comprehensive project template that provides a ready-to-use development environment with modern tooling and best practices. This template accelerates project setup by including pre-configured development containers, GitHub workflows, and standardized templates for issues and pull requests.\n\n## Features\n\n### 🚀 Development Environment Template\n\n- **Dev Containers**: Instant development environment setup with VSCode\n- **Docker Compose**: Easy multi-service environment management\n- **GitHub Templates**: Standardized issue and PR templates\n\n### 📱 Sample Application\n\n- **Full-Stack Architecture**: 3-tier architecture with React + FastAPI + PostgreSQL\n- **Real-time Features**: Instant data updates with button clicks\n- **Data Persistence**: Click history management with PostgreSQL\n- **API Documentation**: Auto-generated documentation with Swagger UI\n- **Responsive UI**: Modern web interface\n\n## Architecture\n\n```mermaid\nsequenceDiagram\n    autonumber\n    actor CL as Client (React)\n    participant SV as Server (FastAPI)\n    participant DB as Database (PostgreSQL)\n    CL-\u003e\u003eSV: HTTP Request (API Call)\n    SV-\u003e\u003eDB: SQL Query\n    DB-\u003e\u003eSV: Query Result\n    SV-\u003e\u003eCL: JSON Response\n```\n\n## Directory Structure\n\n```text\n.\n├── .devcontainer/                # Development container configuration\n├── .github/                      # GitHub configuration\n│   ├── ISSUE_TEMPLATE/           # GitHub issue templates\n│   └── PULL_REQUEST_TEMPLATE/    # GitHub PR templates\n├── .vscode/                      # VSCode configuration\n├── app/                          # Complete application directory (source code, Docker configs, etc.)\n│   ├── client/                   # React frontend application\n│   └── server/                   # FastAPI backend application\n├── bin/                          # Utility scripts\n└── docs/                         # Project documentation\n```\n\n\u003e **📖 For detailed information about each service, please refer to their respective README files:**\n\u003e\n\u003e - **Client (React)**: [`app/client/README.md`](app/client/README.md)\n\u003e - **Server (FastAPI)**: [`app/server/README.md`](app/server/README.md)\n\n## Getting Started\n\n### Prerequisites\n\n- [Docker](https://www.docker.com/)\n- [Dev Containers](https://containers.dev/) extension (`anysphere.remote-containers`) for VSCode\n- UNIX/Linux-based OS (Windows users should use WSL2)\n\n### Quick Start\n\n1. **Clone the repository**\n\n   ```bash\n   git clone \u003crepo-url\u003e \u003cproject-name\u003e\n   cd \u003cproject-name\u003e\n   ```\n\n2. **Initialize the project**\n\n   ```bash\n   make init\n   ```\n\n3. **Open in Dev Container**\n   - Press `Ctrl+Shift+P` (or `Cmd+Shift+P` on Mac) in VSCode\n   - Type `Dev Containers: Open Folder in Container`\n   - Select and execute the command\n\n4. **Start the development environment**\n\n   ```bash\n   make up\n   ```\n\n5. **Access your application**\n   - Open your browser and navigate to: `http://localhost:3000`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fargondev22%2Ftemplate.development","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fargondev22%2Ftemplate.development","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fargondev22%2Ftemplate.development/lists"}