mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-23 19:46:42 +02:00
feat: major update with network graphs, themes, todo extensions, and more
## New Features ### Network Graph Visualization (Contacts, Calendar, Todo) - D3.js force simulation for physics-based layout - Zoom & pan with mouse/touchpad - Keyboard shortcuts: +/- zoom, 0 reset, Esc deselect, / search, F focus - Filtering by tags, company/location/project, connection strength - Shared components in @manacore/shared-ui ### Central Tags API (mana-core-auth) - CRUD endpoints for tags - Schema: tags table with userId, name, color, app - Shared tag components in @manacore/shared-ui ### Custom Themes System - Theme editor with live preview and color picker - Community theme gallery - Theme sharing (public, unlisted, private) - Backend API in mana-core-auth ### Todo App Extensions - Glass-pill design for task input and items - Settings page with 20+ preferences - Task edit modal with inline editing - Statistics page with visualizations - PWA support with offline capabilities - Multiple kanban boards ### Contacts App Features - Duplicate detection - Photo upload - Batch operations - Enhanced favorites page with multiple view modes - Alphabet view improvements - Search modal ### Help System - @manacore/shared-help-content - @manacore/shared-help-ui - @manacore/shared-help-types ### Other Features - Themes page for all apps - Referral system frontend - CommandBar (global search) - Skeleton loaders - Settings page improvements ## Bug Fixes - Network graph simulation initialization - Database schema TEXT for user_id columns (Better Auth compatibility) - Various styling fixes ## Documentation - Daily report for 2025-12-10 - CI/CD deployment guide 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
e84371aa94
commit
ee42b6cc76
381 changed files with 39284 additions and 6275 deletions
|
|
@ -10,7 +10,7 @@ All notable changes and progress updates for the CI/CD implementation.
|
|||
|
||||
### To Be Implemented
|
||||
|
||||
- Infrastructure provisioning (Hetzner + Docker Compose)
|
||||
- Infrastructure provisioning (Hetzner + Coolify)
|
||||
- GitHub secrets configuration
|
||||
- First deployment to staging
|
||||
- Testing implementation
|
||||
|
|
@ -230,7 +230,7 @@ All notable changes and progress updates for the CI/CD implementation.
|
|||
#### Analysis Completed
|
||||
|
||||
- ✅ Hetzner deep dive (server options, pricing, performance)
|
||||
- ✅ Docker Compose deep dive (features, capabilities, deployment)
|
||||
- ✅ Coolify deep dive (features, capabilities, integration)
|
||||
- ✅ Comparative analysis (4 hosting options evaluated)
|
||||
- ✅ Best practices research (monorepo deployment, Docker, CI/CD)
|
||||
- ✅ Cost analysis (6-project deployment estimate)
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ The Hive Mind collective intelligence system has completed the **design, plannin
|
|||
|
||||
**What's Done**:
|
||||
|
||||
- [x] Comprehensive Hetzner hosting analysis (24+ web searches)
|
||||
- [x] Comprehensive Hetzner vs Coolify analysis (24+ web searches)
|
||||
- [x] Cost comparison (4 hosting options evaluated)
|
||||
- [x] Performance benchmarks analyzed
|
||||
- [x] Security and compliance review (ISO 27001, GDPR)
|
||||
|
|
@ -407,7 +407,7 @@ The Hive Mind collective intelligence system has completed the **design, plannin
|
|||
|
||||
- [ ] Hetzner account creation
|
||||
- [ ] Server provisioning
|
||||
- [ ] Docker & Docker Compose installation
|
||||
- [ ] Coolify installation
|
||||
- [ ] Domain configuration
|
||||
- [ ] SSL/TLS setup
|
||||
|
||||
|
|
|
|||
|
|
@ -525,7 +525,7 @@ Traffic → Blue → Switch traffic → Green
|
|||
- [x] ISO 27001 certified infrastructure
|
||||
- [x] SOC 2 Type II (Supabase)
|
||||
- [x] Automated backup retention policies
|
||||
- [x] Audit logs (GitHub Actions, Supabase)
|
||||
- [x] Audit logs (GitHub Actions, Coolify, Supabase)
|
||||
|
||||
---
|
||||
|
||||
|
|
@ -676,7 +676,7 @@ Traffic → Blue → Switch traffic → Green
|
|||
|
||||
- **Likelihood**: Medium (now addressed - migration complete)
|
||||
- **Impact**: Medium
|
||||
- **Mitigation**: Using Docker Compose for all deployments, keeping architecture simple
|
||||
- **Mitigation**: Completed migration from Coolify to Docker Compose, removed legacy artifacts
|
||||
- **Contingency**: Docker Compose provides simpler, more maintainable deployment
|
||||
|
||||
---
|
||||
|
|
|
|||
|
|
@ -99,46 +99,30 @@
|
|||
apt update && apt upgrade -y
|
||||
```
|
||||
|
||||
### Step 3: Set up Docker & Docker Compose (10 minutes)
|
||||
### Step 3: Set up Docker Compose (10 minutes)
|
||||
|
||||
1. On your server (via SSH), install Docker:
|
||||
1. On your server (via SSH), run:
|
||||
|
||||
```bash
|
||||
# Install Docker
|
||||
curl -fsSL https://get.docker.com | bash
|
||||
|
||||
# Add your user to docker group
|
||||
usermod -aG docker $USER
|
||||
|
||||
# Install Docker Compose plugin
|
||||
apt-get update && apt-get install -y docker-compose-plugin
|
||||
|
||||
# Verify installation
|
||||
docker --version
|
||||
docker compose version
|
||||
curl -fsSL https://cdn.coollabs.io/coolify/install.sh | bash
|
||||
```
|
||||
|
||||
2. Set up the deployment directory:
|
||||
2. Wait 5-10 minutes for installation to complete
|
||||
- The script will install Docker, Coolify, and dependencies
|
||||
- You'll see progress messages
|
||||
|
||||
```bash
|
||||
mkdir -p /opt/manacore
|
||||
cd /opt/manacore
|
||||
3. Once complete, access Docker Compose configuration:
|
||||
|
||||
```
|
||||
https://YOUR_SERVER_IP:8000
|
||||
```
|
||||
|
||||
3. Clone your repository or copy docker-compose files:
|
||||
4. Complete initial setup wizard:
|
||||
- Create admin account
|
||||
- Set email (for SSL certificates)
|
||||
- Configure basic settings
|
||||
|
||||
```bash
|
||||
git clone https://github.com/wuesteon/manacore-monorepo.git
|
||||
cd manacore-monorepo
|
||||
```
|
||||
|
||||
4. Configure environment variables:
|
||||
|
||||
```bash
|
||||
cp .env.example .env
|
||||
# Edit .env with your production values
|
||||
nano .env
|
||||
```
|
||||
5. Save your Coolify credentials securely!
|
||||
|
||||
### Step 4: Configure GitHub Secrets (5 minutes)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue