Files
nuc/.artifacts/2026-02-02_12-30_whyrating-databases.md
Alejandro Gutiérrez 59944e9144 Add infrastructure setup artifacts (Feb 1-3)
Session notes covering Gitea-Coolify webhook fixes, NocoDB/Vaultwarden
credentials, Stalwart mail server setup, Snappymail config, WhyRating
databases and email, CloudBeaver deployment, and Turbostarter setup.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 15:17:04 +01:00

1.4 KiB

WhyRating Hub Databases

Date: 2026-02-02 12:30 Context: Added shared PostgreSQL and Redis databases for WhyRating hub projects (internal NUC sites)

Databases Created

PostgreSQL

Property Value
UUID i8skkc8cwsgwgsg0g8kcw44k
Name whyrating-hub-postgres
User whyrating
Password WhyRatingPG2026!
Database whyrating
Internal URL postgres://whyrating:WhyRatingPG2026%21@i8skkc8cwsgwgsg0g8kcw44k:5432/whyrating

Redis

Property Value
UUID vkg44cgcss4ococgk0cs000o
Name whyrating-hub-redis
Password WhyRatingRedis2026!
Internal URL redis://default:WhyRatingRedis2026%21@vkg44cgcss4ococgk0cs000o:6379/0

Apps Configured

All apps have DATABASE_URL and REDIS_URL environment variables:

App UUID URL
whyrating-hub vw4ggc40socwkgwg4osc8wg8 http://whyrating.nuc.lan
whyrating-brand r80gk0ccgg0okos8cw848kkk http://brand.nuc.lan
whyrating-templates qw80g4sog0kk8cc4wkcs8sgc http://templates.nuc.lan

Usage in Next.js

// Database connection (e.g., with Prisma)
const databaseUrl = process.env.DATABASE_URL;

// Redis connection (e.g., with ioredis)
const redisUrl = process.env.REDIS_URL;