Fix token handling, remove orchestrator API call, improve mobile responsive footer layout

This commit is contained in:
2026-01-18 03:09:37 +00:00
parent d77fa4b817
commit 09fc949a06
50 changed files with 9991 additions and 4503 deletions
+29
View File
@@ -0,0 +1,29 @@
// Simple Express API to serve all Redis/Valkey cache keys and values as JSON
const express = require('express');
const Redis = require('ioredis');
const app = express();
const redis = new Redis({
host: process.env.REDIS_HOST || '127.0.0.1',
port: Number(process.env.REDIS_PORT || 6379),
password: process.env.REDIS_PASSWORD,
});
app.get('/api/cache', async (req, res) => {
try {
const keys = await redis.keys('*');
const result = [];
for (const key of keys) {
let value = await redis.get(key);
try { value = JSON.parse(value); } catch {}
result.push({ key, value });
}
res.json(result);
} catch (err) {
res.status(500).json({ error: err.message });
}
});
const port = process.env.CACHE_API_PORT || 3030;
app.listen(port, () => {
console.log(`Cache API running on http://localhost:${port}/api/cache`);
});