docs: rebrand v1.5.0 release materials to Kima

This commit is contained in:
Your Name
2026-02-16 09:41:00 -06:00
parent 74f91d19bd
commit 0a52d1d9df
4 changed files with 33 additions and 33 deletions
+11 -11
View File
@@ -1,4 +1,4 @@
# Lidify v1.5.0 Deployment Commands
# Kima v1.5.0 Deployment Commands
# Copy and paste when ready to deploy
# ============================================
@@ -41,11 +41,11 @@ git push origin v1.5.0
# Step 4: Build Docker image
cd backend
docker build -t your-registry/lidify:1.5.0 -t your-registry/lidify:latest .
docker build -t your-registry/kima:1.5.0 -t your-registry/kima:latest .
# Step 5: Push Docker image
docker push your-registry/lidify:1.5.0
docker push your-registry/lidify:latest
docker push your-registry/kima:1.5.0
docker push your-registry/kima:latest
# ============================================
# FOR USERS TO UPGRADE (simple!)
@@ -69,16 +69,16 @@ docker compose logs backend | grep "\[MIGRATE\]"
docker compose logs backend | grep "Redis"
# Verify webhook events
docker compose exec postgres psql -U lidify -d lidify -c "SELECT COUNT(*) FROM \"WebhookEvent\";"
docker compose exec postgres psql -U kima -d kima -c "SELECT COUNT(*) FROM \"WebhookEvent\";"
# Check migration count (should be 30)
docker compose exec postgres psql -U lidify -d lidify -c "SELECT COUNT(*) FROM \"_prisma_migrations\";"
docker compose exec postgres psql -U kima -d kima -c "SELECT COUNT(*) FROM \"_prisma_migrations\";"
# Monitor Redis memory
docker compose exec redis redis-cli INFO memory | grep used_memory_human
# Test metrics endpoint
curl http://localhost:3006/metrics | grep lidify_
curl http://localhost:3006/metrics | grep kima_
# ============================================
# IF ISSUES - QUICK ROLLBACK
@@ -90,7 +90,7 @@ docker compose build backend
docker compose up -d backend
# Full rollback (restore database backup):
docker compose exec postgres psql -U lidify -d lidify < backup_YYYYMMDD.sql
docker compose exec postgres psql -U kima -d kima < backup_YYYYMMDD.sql
git checkout v1.4.x
docker compose up -d
@@ -98,7 +98,7 @@ docker compose up -d
# GITHUB RELEASE (optional)
# ============================================
# Go to: https://github.com/[your-org]/lidify/releases/new
# Go to: https://github.com/[your-org]/kima/releases/new
# - Tag: v1.5.0
# - Title: v1.5.0 - Integration Stability & Reliability
# - Description: Copy from RELEASE_NOTES_V1.5.0.md
@@ -111,7 +111,7 @@ docker compose up -d
# Discord/Forum/Email:
"""
🎉 Lidify v1.5.0 Released - Integration Stability & Reliability
🎉 Kima v1.5.0 Released - Integration Stability & Reliability
Major stability improvements for Lidarr and Soulseek integrations!
@@ -126,7 +126,7 @@ Major stability improvements for Lidarr and Soulseek integrations!
docker compose pull && docker compose up -d
⏱️ First startup: 30-60 seconds (one-time migration)
📖 Full details: https://github.com/[your-org]/lidify/releases/tag/v1.5.0
📖 Full details: https://github.com/[your-org]/kima/releases/tag/v1.5.0
⚠️ New requirement: Redis (likely already in your docker-compose.yml)
+8 -8
View File
@@ -1,4 +1,4 @@
# Lidify v1.5.0 - Integration Stability & Reliability
# Kima v1.5.0 - Integration Stability & Reliability
**Release Date:** 2026-02-14
**Type:** Major Feature Release
@@ -303,7 +303,7 @@ Before deploying to production:
- [ ] **Backup database**
```bash
docker compose exec postgres pg_dump -U lidify lidify > backup_$(date +%Y%m%d).sql
docker compose exec postgres pg_dump -U kimakima> backup_$(date +%Y%m%d).sql
```
- [ ] **Verify Redis is running**
@@ -321,7 +321,7 @@ Before deploying to production:
- [ ] **Monitor first 24 hours**
- Watch logs: `docker compose logs -f backend | grep MIGRATE`
- Check Redis: `docker compose exec redis redis-cli INFO memory`
- Verify webhooks: `docker compose exec postgres psql -U lidify -d lidify -c "SELECT COUNT(*) FROM \"WebhookEvent\";"`
- Verify webhooks: `docker compose exec postgres psql -U kima-d kima-c "SELECT COUNT(*) FROM \"WebhookEvent\";"`
---
@@ -346,7 +346,7 @@ If database changes cause issues:
```bash
# Restore backup
docker compose exec postgres psql -U lidify -d lidify < backup_YYYYMMDD.sql
docker compose exec postgres psql -U kima-d kima< backup_YYYYMMDD.sql
# Revert code
git checkout v1.4.x
@@ -392,11 +392,11 @@ GPL-3.0 (unchanged)
## 🔗 Links
- **Repository:** https://github.com/[your-org]/lidify
- **Issues:** https://github.com/[your-org]/lidify/issues
- **Discussions:** https://github.com/[your-org]/lidify/discussions
- **Repository:** https://github.com/[your-org]/kima-hub
- **Issues:** https://github.com/[your-org]/kima-hub/issues
- **Discussions:** https://github.com/[your-org]/kima-hub/discussions
- **Discord:** [Your Discord Link]
---
**Full Changelog:** https://github.com/[your-org]/lidify/compare/v1.4.x...v1.5.0
**Full Changelog:** https://github.com/[your-org]/kima-hub/compare/v1.4.x...v1.5.0
+7 -7
View File
@@ -1,12 +1,12 @@
#!/bin/bash
# Lidify v1.5.0 Release Commands
# Kima v1.5.0 Release Commands
# Save this file and run when ready to release
# DO NOT RUN until you've tested on staging
set -e
echo "========================================="
echo "Lidify v1.5.0 Release Process"
echo "Kima v1.5.0 Release Process"
echo "========================================="
echo ""
echo "⚠️ BEFORE RUNNING THIS SCRIPT:"
@@ -153,7 +153,7 @@ See: git log v1.4.x..v1.5.0
---
**Full Changelog**: https://github.com/[your-org]/lidify/compare/v1.4.x...v1.5.0"
**Full Changelog**: https://github.com/[your-org]/kima-hub/compare/v1.4.x...v1.5.0"
echo "✓ Git tag v1.5.0 created"
@@ -187,12 +187,12 @@ echo " git merge feature/soulseek-sse-upgrade"
echo " git push origin main"
echo ""
echo "4. Build and push Docker image:"
echo " docker build -t your-registry/lidify:1.5.0 -t your-registry/lidify:latest backend/"
echo " docker push your-registry/lidify:1.5.0"
echo " docker push your-registry/lidify:latest"
echo " docker build -t your-registry/kima:1.5.0 -t your-registry/kima:latest backend/"
echo " docker push your-registry/kima:1.5.0"
echo " docker push your-registry/kima:latest"
echo ""
echo "5. Create GitHub Release:"
echo " - Go to: https://github.com/[your-org]/lidify/releases/new"
echo " - Go to: https://github.com/[your-org]/kima-hub/releases/new"
echo " - Tag: v1.5.0"
echo " - Title: v1.5.0 - Integration Stability & Reliability"
echo " - Copy release notes from git tag message"
+7 -7
View File
@@ -1,4 +1,4 @@
# Lidify v1.5.0 Release Summary
# Kima v1.5.0 Release Summary
**Status:** ✅ Ready to Deploy (Tagged, Not Pushed)
**Version:** 1.5.0
@@ -216,8 +216,8 @@ v1.5.0
### Docker Image to Build
```
your-registry/lidify:1.5.0
your-registry/lidify:latest
your-registry/kima-hub:1.5.0
your-registry/kima-hub:latest
```
---
@@ -284,9 +284,9 @@ redis:
3. **Build & push Docker image**
```bash
docker build -t your-registry/lidify:1.5.0 backend/
docker push your-registry/lidify:1.5.0
docker push your-registry/lidify:latest
docker build -t your-registry/kima-hub:1.5.0 backend/
docker push your-registry/kima-hub:1.5.0
docker push your-registry/kima-hub:latest
```
4. **Announce to users**
@@ -354,7 +354,7 @@ All docs ready for users:
### User Announcement Template
```
🎉 Lidify v1.5.0 Released!
🎉 Kima v1.5.0 Released!
Major stability update for Lidarr/Soulseek integrations.