{"id":41544969,"url":"https://github.com/liguori/organizer","last_synced_at":"2026-02-20T17:02:55.465Z","repository":{"id":40575789,"uuid":"203458685","full_name":"liguori/organizer","owner":"liguori","description":"Appointment management tool. Technologies: Angular, ASP.NET Core. EF Core and Electron","archived":false,"fork":false,"pushed_at":"2026-02-19T10:35:29.000Z","size":14838,"stargazers_count":14,"open_issues_count":0,"forks_count":6,"subscribers_count":3,"default_branch":"master","last_synced_at":"2026-02-19T15:03:43.744Z","etag":null,"topics":["appointment","calendar","organizer","schedule"],"latest_commit_sha":null,"homepage":"","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/liguori.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":"2019-08-20T21:42:31.000Z","updated_at":"2026-02-19T10:35:34.000Z","dependencies_parsed_at":"2024-12-18T16:55:04.324Z","dependency_job_id":null,"html_url":"https://github.com/liguori/organizer","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/liguori/organizer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liguori%2Forganizer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liguori%2Forganizer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liguori%2Forganizer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liguori%2Forganizer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/liguori","download_url":"https://codeload.github.com/liguori/organizer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liguori%2Forganizer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29658167,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-20T16:33:43.953Z","status":"ssl_error","status_checked_at":"2026-02-20T16:33:43.598Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["appointment","calendar","organizer","schedule"],"created_at":"2026-01-24T02:25:50.003Z","updated_at":"2026-02-20T17:02:55.459Z","avatar_url":"https://github.com/liguori.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Organizer\n\n[![Build Frontend](https://github.com/liguori/organizer/actions/workflows/build-frontend.yml/badge.svg)](https://github.com/liguori/organizer/actions/workflows/build-frontend.yml)\n[![Build Backend](https://github.com/liguori/organizer/actions/workflows/build-backend.yml/badge.svg)](https://github.com/liguori/organizer/actions/workflows/build-backend.yml)\n\nA flexible appointment management system with support for multiple deployment modes: desktop application, web application, or full-stack development with .NET Aspire orchestration.\n\n## Features\n\n- 📅 **Calendar Management** - Year, month, and week views with color-coded appointments\n- 👥 **Customer Management** - Track appointments by customer with visual color coding\n- 📊 **Utilization Tracking** - Monitor billable hours and availability\n- 🎨 **Theme Support** - Light and dark themes for comfortable viewing\n- 🖥️ **Multiple Deployment Options** - Desktop app, web app, or development with Aspire\n\n## Getting Started\n\n### Quick Start Commands\n\n| Goal | Command |\n|------|---------|\n| **Full-stack development** | `cd src/Organizer.AppHost \u0026\u0026 dotnet run` |\n| **Run API only** | `cd src/Organizer.API/Organizer.API \u0026\u0026 dotnet run` |\n| **Run SPA only** | `cd src/Organizer.SPA \u0026\u0026 npm start` |\n| **Build desktop app** | `./Build.ps1` |\n| **Debug API in VS Code** | Press F5 → \"Organizer.API .NET Launch (web)\" |\n| **Debug SPA in VS Code** | Press F5 → \"Organizer.SPA Launch (web)\" |\n\n---\n\n## Tech Stack\n\n| Layer | Technology |\n|-------|------------|\n| Frontend | Angular 21, Angular Material |\n| Backend | ASP.NET Core, Entity Framework Core |\n| Database | SQLite |\n| Desktop | Electron 40.x |\n| Orchestration | .NET Aspire 13.1.0 |\n\n---\n\n## Architecture\n\nThe application has a modular architecture with three main components:\n\n```\n┌─────────────────────────────────────────────────────────────┐\n│                     Electron Shell                          │\n│                   (./src/Organizer.App)                     │\n│  ┌─────────────────────────┬─────────────────────────────┐  │\n│  │         SPA             │           API               │  │\n│  │   (./src/Organizer.SPA) │  (./src/Organizer.API)      │  │\n│  │      Angular 21         │     ASP.NET Core            │  │\n│  │    Angular Material     │   Entity Framework Core     │  │\n│  └─────────────────────────┴─────────────────────────────┘  │\n│                              │                              │\n│                        ┌─────┴─────┐                        │\n│                        │  SQLite   │                        │\n│                        └───────────┘                        │\n└─────────────────────────────────────────────────────────────┘\n```\n\n| Component | Path | Description |\n|-----------|------|-------------|\n| **SPA** | `./src/Organizer.SPA` | Angular-based user interface |\n| **API** | `./src/Organizer.API` | ASP.NET Core REST API with business logic |\n| **Electron** | `./src/Organizer.App` | Desktop shell that hosts both API and SPA |\n| **AppHost** | `./src/Organizer.AppHost` | .NET Aspire orchestration for development |\n\n---\n\n## Prerequisites\n\n- **.NET SDK** 10\n- **Node.js** 20+\n\n---\n\n## Execution Modes\n\nThere are multiple ways to run the application depending on your use case:\n\n| Mode | Use Case | Components Started | How to Run |\n|------|----------|-------------------|------------|\n| [Aspire Orchestration](#1-net-aspire-orchestration) | Development with full observability | API + SPA + Dashboard | `dotnet run` in AppHost |\n| [VS Code Debug](#2-vs-code-debug-configurations) | Debugging individual components | API or SPA (separate) | F5 with launch config |\n| [Standalone Components](#3-standalone-component-execution) | Manual development/testing | API and/or SPA independently | Terminal commands |\n| [Electron App](#4-electron-desktop-application) | Desktop standalone application | Bundled API + SPA | Run built executable |\n| [Web Deployment](#5-web-server-deployment) | Production server hosting | API + SPA on web servers | Deploy published artifacts |\n\n---\n\n### 1. .NET Aspire Orchestration\n\n**Recommended for full-stack development**\n\nThe application includes **.NET Aspire 13.1.0** orchestration providing:\n- Unified orchestration of API and SPA\n- Built-in service discovery\n- Observability with OpenTelemetry\n- Health checks and resilience\n- Dashboard for monitoring all services\n\n**Run:**\n\n```bash\ncd src/Organizer.AppHost\ndotnet run\n```\n\n**Services started:**\n- **Organizer.API** — ASP.NET Core Web API (dynamic port)\n- **Organizer.SPA** — Angular dev server (port 4200)\n- **Aspire Dashboard** — https://localhost:17256\n\n---\n\n### 2. VS Code Debug Configurations\n\n**Recommended for debugging individual components**\n\nPre-configured launch configurations in `.vscode/launch.json`:\n\n| Configuration | Description |\n|--------------|-------------|\n| `Organizer.API .NET Launch (web)` | Debug backend API with .NET debugger |\n| `Organizer.API .NET Attach` | Attach to running API process |\n| `Organizer.SPA Launch (web)` | Debug Angular frontend in Chrome |\n| `Organizer.SPA Test (web)` | Debug Angular unit tests in Chrome |\n\n**How to use:**\n1. Open **Run and Debug** (Ctrl+Shift+D)\n2. Select configuration from dropdown\n3. Press **F5**\n\n\u003e **Ports:** API runs on `https://localhost:5001`, SPA runs on `http://localhost:4200`\n\n---\n\n### 3. Standalone Component Execution\n\n**Recommended for quick iterations on a single component**\n\n#### Backend API\n\n```bash\ncd src/Organizer.API/Organizer.API\ndotnet run\n```\n\n#### Frontend SPA\n\n```bash\ncd src/Organizer.SPA\nnpm install    # First time only\nnpm start      # http://localhost:4200\n```\n\n#### Run Tests\n\n```bash\ncd src/Organizer.SPA\nnpm test       # Karma tests in Chrome\n```\n\n---\n\n### 4. Electron Desktop Application\n\n**Recommended for end-user distribution**\n\nThe Electron app bundles API + SPA into a self-contained desktop application.\n\n**Build:**\n\n```bash\n./Build.ps1\n```\n\nThis script:\n1. Publishes .NET API to `./src/Organizer.App/Services`\n2. Builds Angular SPA to `./src/Organizer.App/UI`\n3. Packages as Electron app (v40.x)\n\n**Output:** `./src/dist`\n\n**Development mode:**\n\n```bash\ncd src/Organizer.App\nnpm install\nnpm start\n```\n\n---\n\n### 5. Web Server Deployment\n\n**Recommended for production hosting**\n\n#### Build\n\n```bash\n# API\ncd src/Organizer.API\ndotnet publish -c Release -o ./publish\n\n# SPA\ncd src/Organizer.SPA\nnpm run build -- --configuration production\n```\n\n#### Deploy\n\n| Component | Target |\n|-----------|--------|\n| **API** | IIS, Azure App Service, Linux/Kestrel, Containers |\n| **SPA** | Nginx, Azure Static Web Apps, CDN, any static host |\n\n\u003e **Configuration:** Update `appsettings.Production.json` (API) and `environment.prod.ts` (SPA) with production URLs.\n\n---\n\n## Screenshots\n\n### Calendar View\n\nYear view with color-coded appointments for different customers:\n\n**Light Theme**\n![Calendar Light Theme](docs/CalendarView.png)\n\n**Dark Theme**\n![Calendar Dark Theme](docs/CalendarView_Dark.png)\n\n### Additional Views\n\n\u003cdetails\u003e\n\u003csummary\u003eClick to see more screenshots showing monthly view, appointment editing, customer management, and other features\u003c/summary\u003e\n\n#### Appointment Editing\n![Appointment Editing](docs/AppointmentEditing.png)\n\n#### Available Days\n![Available Days](docs/AvailableDays.png)\n\n#### Customer Summary\n![Customer Summary](docs/CustomerSummary.png)\n\n#### Calendar Monthly View\n![Calendar Monthly View](docs/CalendarMonthlyView.png)\n\n#### Multiple Customer Filter\n![Multiple Customer Filter](docs/CalendarMultiCustomerFilter.png)\n\n\u003c/details\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliguori%2Forganizer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fliguori%2Forganizer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliguori%2Forganizer/lists"}