Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Backend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@ __pycache__/
env
db/database.db

# ChromaDB database files
*.sqlite3
db/chromadb/
my_chroma_db/
Binary file modified Backend/db/chromadb/chroma.sqlite3
Binary file not shown.
4 changes: 4 additions & 0 deletions Frontend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
# Xcode
#
build/
ios/BabyNest/PrivacyInfo.xcprivacy
*.pbxuser
!default.pbxuser
*.mode1v3
Expand Down Expand Up @@ -33,6 +34,8 @@ local.properties
.cxx/
*.keystore
!debug.keystore
android/gradlew
android/gradlew.bat

# node.js
#
Expand Down Expand Up @@ -60,6 +63,7 @@ yarn-error.log
# Ruby / CocoaPods
**/Pods/
/vendor/bundle/
ios/Podfile.lock

# Temporary files created by Metro to check the health of the file watcher
.metro-health-check*
Expand Down
Empty file modified Frontend/android/gradlew
100644 → 100755
Empty file.
16 changes: 12 additions & 4 deletions Frontend/ios/BabyNest/PrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
<array>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategoryFileTimestamp</string>
<string>NSPrivacyAccessedAPICategorySystemBootTime</string>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>C617.1</string>
<string>35F9.1</string>
</array>
</dict>
<dict>
Expand All @@ -22,10 +22,18 @@
</dict>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategorySystemBootTime</string>
<string>NSPrivacyAccessedAPICategoryFileTimestamp</string>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>35F9.1</string>
<string>C617.1</string>
</array>
</dict>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategoryDiskSpace</string>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>85F4.1</string>
</array>
</dict>
</array>
Expand Down
Loading