- Rename directory keep-notes -> memento-note with all code references - Prisma: SQLite -> PostgreSQL (both app and MCP server schemas) - Sync MCP schema with main app (add missing fields, relations, indexes) - Delete 17 SQLite migrations (clean slate for PostgreSQL) - Remove SQLite dependencies (@libsql/client, better-sqlite3, etc.) - Fix MCP server: hardcoded Windows DB paths -> DATABASE_URL env var - Fix MCP server: .dockerignore excluded index-sse.js (SSE mode broken) - MCP Dockerfile: node:20 -> node:22 - Docker Compose: add postgres service, remove SQLite volume - Generate favicon.ico, icon-192.png, icon-512.png, apple-icon.png - Update layout.tsx icons and manifest.json for PNG icons - Update all .env files for PostgreSQL - Rewrite README.md with updated sections - Remove mcp-server/node_modules and prisma/client-generated from git tracking Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
47 lines
1.5 KiB
Plaintext
47 lines
1.5 KiB
Plaintext
# ============================================
|
|
# Database Configuration
|
|
# ============================================
|
|
DATABASE_URL="postgresql://memento:memento@localhost:5432/memento"
|
|
POSTGRES_PORT=5432
|
|
|
|
# ============================================
|
|
# NextAuth Configuration
|
|
# ============================================
|
|
# Generate with: openssl rand -base64 32
|
|
NEXTAUTH_SECRET="change-this-to-a-random-string-at-least-32-characters-long"
|
|
# For local development: NEXTAUTH_URL="http://localhost:3000"
|
|
# For Docker/Production: NEXTAUTH_URL="http://YOUR_SERVER_IP:3000"
|
|
NEXTAUTH_URL="http://localhost:3000"
|
|
|
|
# ============================================
|
|
# Email Configuration (SMTP)
|
|
# ============================================
|
|
# Required for password reset and reminders
|
|
SMTP_HOST="smtp.gmail.com"
|
|
SMTP_PORT="587"
|
|
SMTP_USER="your-email@gmail.com"
|
|
SMTP_PASS="your-app-password"
|
|
SMTP_FROM="noreply@memento.app"
|
|
|
|
# ============================================
|
|
# AI Provider Configuration
|
|
# ============================================
|
|
|
|
# OpenAI (Optional - for GPT models)
|
|
OPENAI_API_KEY="sk-..."
|
|
|
|
# Ollama (Optional - for local models)
|
|
OLLAMA_API_URL="http://ollama:11434"
|
|
|
|
# ============================================
|
|
# Application Settings
|
|
# ============================================
|
|
NODE_ENV="production"
|
|
PORT="3000"
|
|
|
|
# ============================================
|
|
# Docker-Specific Settings
|
|
# ============================================
|
|
# These are usually set in docker-compose.yml
|
|
# Keep for local development reference
|