mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 18:39:41 +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
|
|
@ -75,9 +75,6 @@ const APP_CONFIGS = [
|
|||
STRIPE_SECRET_KEY: (env) => env.STRIPE_SECRET_KEY,
|
||||
STRIPE_PUBLISHABLE_KEY: (env) => env.STRIPE_PUBLISHABLE_KEY,
|
||||
STRIPE_WEBHOOK_SECRET: (env) => env.STRIPE_WEBHOOK_SECRET,
|
||||
BREVO_API_KEY: (env) => env.BREVO_API_KEY || '',
|
||||
BREVO_FROM_EMAIL: (env) => env.BREVO_FROM_EMAIL || 'noreply@manacore.app',
|
||||
BREVO_FROM_NAME: (env) => env.BREVO_FROM_NAME || 'Mana Core',
|
||||
CORS_ORIGINS: (env) => env.CORS_ORIGINS,
|
||||
CREDITS_SIGNUP_BONUS: (env) => env.CREDITS_SIGNUP_BONUS,
|
||||
CREDITS_DAILY_FREE: (env) => env.CREDITS_DAILY_FREE,
|
||||
|
|
@ -101,12 +98,6 @@ const APP_CONFIGS = [
|
|||
GOOGLE_GENAI_API_KEY: (env) => env.GOOGLE_GENAI_API_KEY,
|
||||
MANA_CORE_AUTH_URL: (env) => env.MANA_CORE_AUTH_URL,
|
||||
DATABASE_URL: (env) => env.CHAT_DATABASE_URL,
|
||||
// S3 Storage (MinIO local, Hetzner production)
|
||||
S3_ENDPOINT: (env) => env.S3_ENDPOINT,
|
||||
S3_REGION: (env) => env.S3_REGION,
|
||||
S3_ACCESS_KEY: (env) => env.S3_ACCESS_KEY,
|
||||
S3_SECRET_KEY: (env) => env.S3_SECRET_KEY,
|
||||
CORS_ORIGINS: (env) => env.CORS_ORIGINS,
|
||||
},
|
||||
},
|
||||
|
||||
|
|
|
|||
73
scripts/remove-coolify-references.sh
Executable file
73
scripts/remove-coolify-references.sh
Executable file
|
|
@ -0,0 +1,73 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Script to remove Coolify references and replace with Docker Compose equivalents
|
||||
# Usage: ./scripts/remove-coolify-references.sh
|
||||
|
||||
set -e
|
||||
|
||||
echo "Starting Coolify reference removal..."
|
||||
|
||||
# Function to replace text in files
|
||||
replace_in_file() {
|
||||
local file=$1
|
||||
local search=$2
|
||||
local replace=$3
|
||||
|
||||
if [ -f "$file" ]; then
|
||||
sed -i.bak "s|$search|$replace|g" "$file" && rm "${file}.bak"
|
||||
echo " ✓ Updated: $file"
|
||||
fi
|
||||
}
|
||||
|
||||
# Common replacements across all files
|
||||
echo "Applying common replacements..."
|
||||
|
||||
# Platform references
|
||||
find . -type f \( -name "*.md" -o -name "*.yml" -o -name "*.yaml" \) \
|
||||
-not -path "*/node_modules/*" \
|
||||
-not -path "*/.git/*" \
|
||||
-not -path "*/archive/*" \
|
||||
-exec sed -i.bak 's/Coolify + Hetzner/Docker Compose + Hetzner VPS/g' {} \; \
|
||||
-exec sed -i.bak 's/Coolify (open-source PaaS)/Docker Compose orchestration/g' {} \; \
|
||||
-exec sed -i.bak 's/Coolify server/Hetzner VPS/g' {} \; \
|
||||
-exec sed -i.bak 's/Coolify Platform/Docker Compose/g' {} \; \
|
||||
-exec sed -i.bak 's/Coolify managed/Docker Compose managed/g' {} \; \
|
||||
-exec sed -i.bak 's/Install Coolify/Set up Docker Compose/g' {} \; \
|
||||
-exec sed -i.bak 's/Coolify UI/Docker Compose configuration/g' {} \; \
|
||||
-exec sed -i.bak 's/Coolify deployment/Docker Compose deployment/g' {} \; \
|
||||
-exec sed -i.bak 's/Platform: Coolify/Platform: Docker Compose/g' {} \; \
|
||||
-exec sed -i.bak 's/Platform\*\*: Coolify/Platform**: Docker Compose/g' {} \;
|
||||
|
||||
# Clean up backup files
|
||||
find . -name "*.bak" -type f -delete
|
||||
|
||||
echo "✓ Common replacements complete"
|
||||
|
||||
# Specific file updates
|
||||
echo "Updating specific files..."
|
||||
|
||||
# Update TODO.md to remove Coolify installation steps
|
||||
if [ -f "cicd/TODO.md" ]; then
|
||||
echo " - Updating cicd/TODO.md..."
|
||||
# Remove the "Install Coolify" section header and related tasks
|
||||
sed -i.bak '/### 1.3 Install Coolify/,/\*\*\*\*/d' cicd/TODO.md
|
||||
sed -i.bak 's/Provision production server/Set up production server/g' cicd/TODO.md
|
||||
sed -i.bak 's/Install Coolify on production server/Set up Docker Compose on production server/g' cicd/TODO.md
|
||||
rm cicd/TODO.md.bak
|
||||
fi
|
||||
|
||||
# Update PLAN.md
|
||||
if [ -f "cicd/PLAN.md" ]; then
|
||||
echo " - Updating cicd/PLAN.md..."
|
||||
sed -i.bak 's/Coolify with auto-scaling/Docker Compose with manual scaling/g' cicd/PLAN.md
|
||||
sed -i.bak '/Coolify Documentation/d' cicd/PLAN.md
|
||||
sed -i.bak '/GitHub Repository.*coolify/d' cicd/PLAN.md
|
||||
rm cicd/PLAN.md.bak
|
||||
fi
|
||||
|
||||
# Clean up remaining backup files
|
||||
find . -name "*.bak" -type f -delete
|
||||
|
||||
echo "✅ Coolify reference removal complete!"
|
||||
echo ""
|
||||
echo "Files modified. Please review changes with: git diff"
|
||||
Loading…
Add table
Add a link
Reference in a new issue