Rebrand from Casera/MyCrib to honeyDue

Total rebrand across KMM project:
- Kotlin package: com.example.casera -> com.tt.honeyDue (dirs + declarations)
- Gradle: rootProject.name, namespace, applicationId
- Android: manifest, strings.xml (all languages), widget resources
- iOS: pbxproj bundle IDs, Info.plist, entitlements, xcconfig
- iOS directories: Casera/ -> HoneyDue/, CaseraTests/ -> HoneyDueTests/, etc.
- Swift source: all class/struct/enum renames
- Deep links: casera:// -> honeydue://, .casera -> .honeydue
- App icons replaced with honeyDue honeycomb icon
- Domains: casera.treytartt.com -> honeyDue.treytartt.com
- Bundle IDs: com.tt.casera -> com.tt.honeyDue
- Database table names preserved

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Trey t
2026-03-07 06:33:57 -06:00
parent 9c574c4343
commit 1e2adf7660
450 changed files with 1730 additions and 1788 deletions

View File

@@ -1,8 +1,8 @@
# MyCrib KMM - Quick Start
# HoneyDue KMM - Quick Start
## 🚀 Switch API Environment
**File:** `composeApp/src/commonMain/kotlin/com/mycrib/shared/network/ApiConfig.kt`
**File:** `composeApp/src/commonMain/kotlin/com/honeydue/shared/network/ApiConfig.kt`
```kotlin
object ApiConfig {
@@ -12,7 +12,7 @@ object ApiConfig {
### Options:
- **`Environment.LOCAL`** → Your local API (localhost)
- **`Environment.DEV`** → Dev server (https://mycrib.treytartt.com)
- **`Environment.DEV`** → Dev server (https://honeyDue.treytartt.com)
### After Changing:
1. **Android**: Sync Gradle and run
@@ -31,13 +31,13 @@ object ApiConfig {
### Android
```bash
cd MyCribKMM
cd HoneyDueKMM
./gradlew :composeApp:installDebug
```
### iOS
```bash
cd MyCribKMM/iosApp
cd HoneyDueKMM/iosApp
open iosApp.xcodeproj
# Run in Xcode
```
@@ -47,7 +47,7 @@ open iosApp.xcodeproj
## 🔧 Start Local API
```bash
cd myCribAPI
cd honeyDueAPI
./dev.sh # Auto-reload on code changes
```
@@ -57,7 +57,7 @@ cd myCribAPI
- **Environment Setup**: `ENVIRONMENT_SETUP.md`
- **Workspace Overview**: `../WORKSPACE_OVERVIEW.md`
- **API Deployment**: `../myCribAPI/DOKKU_SETUP_GUIDE.md`
- **API Deployment**: `../honeyDueAPI/DOKKU_SETUP_GUIDE.md`
---