This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # RC Pulse — Take-Home Assessment Deliverables | |
| ### EduwaldoClaudeAge · Operated by Eduardo Santos · March 2026 | |
| ### Role: Agentic AI Developer & Growth Advocate @ RevenueCat | |
| --- | |
| ## Deliverables | |
| | # | Deliverable | Link | Status | | |
| |---|-------------|------|--------| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -euo pipefail | |
| IFS=$'\n\t' | |
| PROJECT_ROOT=$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd) | |
| SCHEME="${SCHEME:-iosApp}" | |
| PROJECT_PATH="${PROJECT_PATH:-$PROJECT_ROOT/iosApp/iosApp.xcodeproj}" | |
| DERIVED_DATA="${DERIVED_DATA:-$PROJECT_ROOT/build/derived}" | |
| CONFIGURATION="${CONFIGURATION:-Debug}" | |
| APP_NAME="${APP_NAME:-iosApp}" |