# # .gitignore # Zyquo Agent # # Author: Simon-Pierre Boucher # Mail: contact@spboucher.ai # # ---- Secrets (NEVER commit) ------------------------------------------------- .secrets/ *.env.keys .env .env.local *.p12 *.mobileprovision AuthKey_*.p8 # ---- Swift Package Manager -------------------------------------------------- .build/ .swiftpm/ *.xcframework # ---- Build products / distribution ----------------------------------------- build/ dist/ DerivedData/ *.dmg *.o *.dSYM/ *.icns.tmp # ---- Xcode (not used to build, but keep clones clean) ---------------------- *.xcodeproj/xcuserdata/ *.xcworkspace/xcuserdata/ *.xcuserstate *.xcuserdatad/ xcuserdata/ *.xcscmblueprint *.xccheckout *.moved-aside *.hmap *.ipa timeline.xctimeline playground.xcworkspace # ---- Dependency managers --------------------------------------------------- Pods/ Carthage/Build/ .netrc # ---- Tooling / caches ------------------------------------------------------ scripts/__pycache__/ __pycache__/ *.pyc .mypy_cache/ # ---- macOS ----------------------------------------------------------------- .DS_Store .DS_Store? ._* .Spotlight-V100 .Trashes .AppleDouble .LSOverride Icon? ehthumbs.db Thumbs.db # ---- Editors --------------------------------------------------------------- .idea/ .vscode/ *.swp *~