setup.sh copies PROMPT.md and .gitignore into a new app repo with one command. xcode.gitignore covers Xcode, SPM, CocoaPods, code signing, and secrets. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
49 lines
640 B
Plaintext
49 lines
640 B
Plaintext
# Xcode
|
|
*.xcodeproj/xcuserdata/
|
|
*.xcworkspace/xcuserdata/
|
|
*.xcuserstate
|
|
*.xcscmblueprint
|
|
*.xccheckout
|
|
|
|
# Build output
|
|
build/
|
|
DerivedData/
|
|
*.ipa
|
|
*.dSYM.zip
|
|
*.dSYM
|
|
|
|
# Swift Package Manager
|
|
.build/
|
|
.swiftpm/
|
|
Package.resolved
|
|
|
|
# CocoaPods (if used)
|
|
Pods/
|
|
|
|
# Carthage (if used)
|
|
Carthage/Build/
|
|
Carthage/Checkouts/
|
|
|
|
# Fastlane
|
|
fastlane/report.xml
|
|
fastlane/Preview.html
|
|
fastlane/screenshots/**/*.png
|
|
fastlane/test_output
|
|
|
|
# Code signing
|
|
*.mobileprovision
|
|
*.provisionprofile
|
|
|
|
# Secrets and environment files
|
|
*.env
|
|
.env.*
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Claude Code local settings
|
|
.claude/settings.json
|
|
.claude/settings.local.json
|
|
.chat-history/
|