* Revise portfolio: warm brown theme, elegant typography, optimized analytics tracking (#55) * Initial plan * Update color theme to warm brown and off-white, add elegant fonts, fix analytics tracking Co-authored-by: denshooter <44590296+denshooter@users.noreply.github.com> * Fix 404 page integration with warm theme, update admin console colors, fix font loading Co-authored-by: denshooter <44590296+denshooter@users.noreply.github.com> * Address code review feedback: fix navigation, add utils, improve tracking Co-authored-by: denshooter <44590296+denshooter@users.noreply.github.com> * Fix accessibility and memory leak issues from code review Co-authored-by: denshooter <44590296+denshooter@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: denshooter <44590296+denshooter@users.noreply.github.com> * chore: Code cleanup, add Sentry.io monitoring, and documentation (#56) * Initial plan * Remove unused code and clean up console statements Co-authored-by: denshooter <44590296+denshooter@users.noreply.github.com> * Remove unused components and fix type issues Co-authored-by: denshooter <44590296+denshooter@users.noreply.github.com> * Wrap console.warn in development check Co-authored-by: denshooter <44590296+denshooter@users.noreply.github.com> * Integrate Sentry.io monitoring and add text editing documentation Co-authored-by: denshooter <44590296+denshooter@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: denshooter <44590296+denshooter@users.noreply.github.com> * Initial plan * feat: Add Sentry configuration files and example pages - Add sentry.server.config.ts and sentry.edge.config.ts - Update instrumentation.ts with onRequestError export - Update instrumentation-client.ts with onRouterTransitionStart export - Update global-error.tsx to capture exceptions with Sentry - Create Sentry example page at app/sentry-example-page/page.tsx - Create Sentry example API route at app/api/sentry-example-api/route.ts Co-authored-by: denshooter <44590296+denshooter@users.noreply.github.com> * feat: Update middleware to allow Sentry example page and fix deprecated API - Update middleware to exclude /sentry-example-page from locale routing - Remove deprecated startTransaction API from Sentry example page - Use consistent DSN configuration with fallback values Co-authored-by: denshooter <44590296+denshooter@users.noreply.github.com> * refactor: Improve Sentry configuration with environment-based sampling - Add comments explaining DSN fallback values - Use environment-based tracesSampleRate (10% in production, 100% in dev) - Address code review feedback for production-safe configuration Co-authored-by: denshooter <44590296+denshooter@users.noreply.github.com> --------- Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
50 lines
1.6 KiB
Plaintext
50 lines
1.6 KiB
Plaintext
# Portfolio Environment Configuration
|
|
# Copy this file to .env and fill in your values
|
|
|
|
# Application
|
|
NODE_ENV=production
|
|
NEXT_PUBLIC_BASE_URL=https://dk0.dev
|
|
|
|
# Ghost CMS (removed - using built-in project management)
|
|
# GHOST_API_URL=https://your-ghost-instance.com
|
|
# GHOST_API_KEY=your-ghost-api-key
|
|
|
|
# Email Configuration (optional - for contact form)
|
|
MY_EMAIL=contact@dk0.dev
|
|
MY_INFO_EMAIL=info@dk0.dev
|
|
MY_PASSWORD=your-email-password
|
|
MY_INFO_PASSWORD=your-info-email-password
|
|
|
|
# Database (automatically set by Docker Compose)
|
|
# DATABASE_URL=postgresql://portfolio_user:portfolio_pass@postgres:5432/portfolio_db?schema=public
|
|
|
|
# Redis (automatically set by Docker Compose)
|
|
# REDIS_URL=redis://:portfolio_redis_pass@redis:6379
|
|
|
|
# Analytics
|
|
NEXT_PUBLIC_UMAMI_URL=https://analytics.dk0.dev
|
|
NEXT_PUBLIC_UMAMI_WEBSITE_ID=b3665829-927a-4ada-b9bb-fcf24171061e
|
|
|
|
# n8n Integration (optional - for automation and AI features)
|
|
N8N_WEBHOOK_URL=https://n8n.dk0.dev
|
|
N8N_SECRET_TOKEN=your-n8n-secret-token
|
|
N8N_API_KEY=your-n8n-api-key
|
|
|
|
# Security
|
|
# JWT_SECRET=your-jwt-secret
|
|
# ENCRYPTION_KEY=your-encryption-key
|
|
ADMIN_BASIC_AUTH=admin:your_secure_password_here
|
|
ADMIN_SESSION_SECRET=change_me_to_a_long_random_string_at_least_32_chars
|
|
|
|
# Prisma migrations at container startup
|
|
# - default: migrations are executed (`prisma migrate deploy`)
|
|
# - set to true ONCE if you already have an existing DB that was created before migrations existed
|
|
PRISMA_AUTO_BASELINE=false
|
|
# emergency switch (not recommended for normal operation)
|
|
# SKIP_PRISMA_MIGRATE=true
|
|
|
|
# Monitoring (optional)
|
|
NEXT_PUBLIC_SENTRY_DSN=your-sentry-dsn
|
|
SENTRY_AUTH_TOKEN=your-sentry-auth-token
|
|
LOG_LEVEL=info
|