🚀 Complete Production Setup

 Features:
- Analytics Dashboard with real-time metrics
- Redis caching for performance optimization
- Import/Export functionality for projects
- Complete admin system with security
- Production-ready Docker setup

🔧 Technical:
- Removed Ghost CMS dependencies
- Added Redis container with caching
- Implemented API response caching
- Enhanced admin interface with analytics
- Optimized for dk0.dev domain

🛡️ Security:
- Admin authentication with Basic Auth
- Protected analytics endpoints
- Secure environment configuration

📊 Analytics:
- Performance metrics dashboard
- Project statistics visualization
- Real-time data with caching
- Umami integration for GDPR compliance

🎯 Production Ready:
- Multi-container Docker setup
- Health checks for all services
- Automatic restart policies
- Resource limits configured
- Ready for Nginx Proxy Manager
This commit is contained in:
Dennis Konkol
2025-09-05 21:35:54 +00:00
parent c736f860aa
commit 9835bb810d
19 changed files with 1386 additions and 45 deletions

82
lib/cache.ts Normal file
View File

@@ -0,0 +1,82 @@
import { cache } from './redis';
// API Response caching
export const apiCache = {
async getProjects() {
return await cache.get('api:projects');
},
async setProjects(projects: any, ttlSeconds = 300) {
return await cache.set('api:projects', projects, ttlSeconds);
},
async getProject(id: number) {
return await cache.get(`api:project:${id}`);
},
async setProject(id: number, project: any, ttlSeconds = 300) {
return await cache.set(`api:project:${id}`, project, ttlSeconds);
},
async invalidateProject(id: number) {
await cache.del(`api:project:${id}`);
await cache.del('api:projects');
},
async invalidateAll() {
await cache.del('api:projects');
// Clear all project caches
const keys = await this.getAllProjectKeys();
for (const key of keys) {
await cache.del(key);
}
},
async getAllProjectKeys() {
// This would need to be implemented with Redis SCAN
// For now, we'll use a simple approach
return [];
}
};
// Performance metrics caching
export const performanceCache = {
async getMetrics(url: string) {
return await cache.get(`perf:${url}`);
},
async setMetrics(url: string, metrics: any, ttlSeconds = 600) {
return await cache.set(`perf:${url}`, metrics, ttlSeconds);
},
async getWebVitals() {
return await cache.get('perf:webvitals');
},
async setWebVitals(vitals: any, ttlSeconds = 300) {
return await cache.set('perf:webvitals', vitals, ttlSeconds);
}
};
// User session caching
export const userCache = {
async getSession(sessionId: string) {
return await cache.get(`user:session:${sessionId}`);
},
async setSession(sessionId: string, data: any, ttlSeconds = 86400) {
return await cache.set(`user:session:${sessionId}`, data, ttlSeconds);
},
async deleteSession(sessionId: string) {
return await cache.del(`user:session:${sessionId}`);
},
async getUserPreferences(userId: string) {
return await cache.get(`user:prefs:${userId}`);
},
async setUserPreferences(userId: string, prefs: any, ttlSeconds = 86400) {
return await cache.set(`user:prefs:${userId}`, prefs, ttlSeconds);
}
};

145
lib/redis.ts Normal file
View File

@@ -0,0 +1,145 @@
import { createClient } from 'redis';
let redisClient: ReturnType<typeof createClient> | null = null;
export const getRedisClient = async () => {
if (!redisClient) {
const redisUrl = process.env.REDIS_URL || 'redis://localhost:6379';
redisClient = createClient({
url: redisUrl,
socket: {
reconnectStrategy: (retries) => Math.min(retries * 50, 1000)
}
});
redisClient.on('error', (err) => {
console.error('Redis Client Error:', err);
});
redisClient.on('connect', () => {
console.log('Redis Client Connected');
});
redisClient.on('ready', () => {
console.log('Redis Client Ready');
});
redisClient.on('end', () => {
console.log('Redis Client Disconnected');
});
await redisClient.connect();
}
return redisClient;
};
export const closeRedisConnection = async () => {
if (redisClient) {
await redisClient.quit();
redisClient = null;
}
};
// Cache utilities
export const cache = {
async get(key: string) {
try {
const client = await getRedisClient();
const value = await client.get(key);
return value ? JSON.parse(value) : null;
} catch (error) {
console.error('Redis GET error:', error);
return null;
}
},
async set(key: string, value: any, ttlSeconds = 3600) {
try {
const client = await getRedisClient();
await client.setEx(key, ttlSeconds, JSON.stringify(value));
return true;
} catch (error) {
console.error('Redis SET error:', error);
return false;
}
},
async del(key: string) {
try {
const client = await getRedisClient();
await client.del(key);
return true;
} catch (error) {
console.error('Redis DEL error:', error);
return false;
}
},
async exists(key: string) {
try {
const client = await getRedisClient();
return await client.exists(key);
} catch (error) {
console.error('Redis EXISTS error:', error);
return false;
}
},
async flush() {
try {
const client = await getRedisClient();
await client.flushAll();
return true;
} catch (error) {
console.error('Redis FLUSH error:', error);
return false;
}
}
};
// Session management
export const session = {
async create(userId: string, data: any, ttlSeconds = 86400) {
const sessionId = `session:${userId}:${Date.now()}`;
await cache.set(sessionId, data, ttlSeconds);
return sessionId;
},
async get(sessionId: string) {
return await cache.get(sessionId);
},
async update(sessionId: string, data: any, ttlSeconds = 86400) {
return await cache.set(sessionId, data, ttlSeconds);
},
async destroy(sessionId: string) {
return await cache.del(sessionId);
}
};
// Analytics caching
export const analyticsCache = {
async getProjectStats(projectId: number) {
return await cache.get(`analytics:project:${projectId}`);
},
async setProjectStats(projectId: number, stats: any, ttlSeconds = 300) {
return await cache.set(`analytics:project:${projectId}`, stats, ttlSeconds);
},
async getOverallStats() {
return await cache.get('analytics:overall');
},
async setOverallStats(stats: any, ttlSeconds = 600) {
return await cache.set('analytics:overall', stats, ttlSeconds);
},
async invalidateProject(projectId: number) {
await cache.del(`analytics:project:${projectId}`);
await cache.del('analytics:overall');
}
};