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
| // Call from App Delegate | |
| func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool { | |
| guard let components = URLComponents(string: url.absoluteString), let scheme = components.scheme else { return true } | |
| let absolute = url.absoluteString | |
| let path = absolute.replacingOccurrences(of: "\(scheme)://", with: "") | |
| launchCoordinator.appCoordinator.deepLink(path: path) | |
| return true |
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
| # Getting Started with Claude Code | |
| A simple guide for team members who want to use Claude Code with projects like this one. | |
| --- | |
| ## What is Claude Code? | |
| Claude Code is a command-line AI assistant that can: | |
| - Read and understand your codebase |
OlderNewer