Rebrand from Casera/MyCrib to honeyDue
Total rebrand across all Go API source files: - Go module path: casera-api -> honeydue-api - All imports updated (130+ files) - Docker: containers, images, networks renamed - Email templates: support email, noreply, icon URL - Domains: casera.app/mycrib.treytartt.com -> honeyDue.treytartt.com - Bundle IDs: com.tt.casera -> com.tt.honeyDue - IAP product IDs updated - Landing page, admin panel, config defaults - Seeds, CI workflows, Makefile, docs - Database table names preserved (no migration needed) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
# Production / Docker Swarm compose file
|
||||
# Usage:
|
||||
# docker stack deploy -c docker-compose.yml casera
|
||||
# docker stack deploy -c docker-compose.yml honeydue
|
||||
#
|
||||
# All env vars must be set in the environment or a .env file.
|
||||
# No dev-safe defaults — missing vars will fail the deploy.
|
||||
@@ -30,7 +30,7 @@ services:
|
||||
parallelism: 1
|
||||
delay: 10s
|
||||
networks:
|
||||
- casera-network
|
||||
- honeydue-network
|
||||
|
||||
# Redis Cache
|
||||
redis:
|
||||
@@ -50,11 +50,11 @@ services:
|
||||
condition: any
|
||||
delay: 5s
|
||||
networks:
|
||||
- casera-network
|
||||
- honeydue-network
|
||||
|
||||
# Casera API
|
||||
# honeyDue API
|
||||
api:
|
||||
image: ${REGISTRY:-ghcr.io/treytartt}/casera-api:${TAG:-latest}
|
||||
image: ${REGISTRY:-ghcr.io/treytartt}/honeydue-api:${TAG:-latest}
|
||||
ports:
|
||||
- "${PORT:-8000}:8000"
|
||||
environment:
|
||||
@@ -113,11 +113,11 @@ services:
|
||||
delay: 10s
|
||||
order: start-first
|
||||
networks:
|
||||
- casera-network
|
||||
- honeydue-network
|
||||
|
||||
# Casera Admin Panel (Next.js)
|
||||
# honeyDue Admin Panel (Next.js)
|
||||
admin:
|
||||
image: ${REGISTRY:-ghcr.io/treytartt}/casera-admin:${TAG:-latest}
|
||||
image: ${REGISTRY:-ghcr.io/treytartt}/honeydue-admin:${TAG:-latest}
|
||||
ports:
|
||||
- "${ADMIN_PORT:-3000}:3000"
|
||||
environment:
|
||||
@@ -139,11 +139,11 @@ services:
|
||||
delay: 10s
|
||||
order: start-first
|
||||
networks:
|
||||
- casera-network
|
||||
- honeydue-network
|
||||
|
||||
# Casera Worker (Background Jobs)
|
||||
# honeyDue Worker (Background Jobs)
|
||||
worker:
|
||||
image: ${REGISTRY:-ghcr.io/treytartt}/casera-worker:${TAG:-latest}
|
||||
image: ${REGISTRY:-ghcr.io/treytartt}/honeydue-worker:${TAG:-latest}
|
||||
environment:
|
||||
# Database
|
||||
DB_HOST: db
|
||||
@@ -187,7 +187,7 @@ services:
|
||||
condition: any
|
||||
delay: 5s
|
||||
networks:
|
||||
- casera-network
|
||||
- honeydue-network
|
||||
|
||||
# Dozzle — lightweight real-time log viewer
|
||||
dozzle:
|
||||
@@ -207,7 +207,7 @@ services:
|
||||
constraints:
|
||||
- node.role == manager
|
||||
networks:
|
||||
- casera-network
|
||||
- honeydue-network
|
||||
|
||||
volumes:
|
||||
postgres_data:
|
||||
@@ -216,5 +216,5 @@ volumes:
|
||||
uploads:
|
||||
|
||||
networks:
|
||||
casera-network:
|
||||
honeydue-network:
|
||||
driver: overlay
|
||||
|
||||
Reference in New Issue
Block a user