├── .clang-format ├── .gitattributes ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── app ├── App.swift ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── ChatGPT Image Sep 2, 2025, 10_33_04 PM.png │ │ └── Contents.json │ ├── Contents.json │ └── logo.imageset │ │ ├── ChatGPT Image Sep 2, 2025, 10_33_04 PM.png │ │ └── Contents.json ├── Core │ ├── Home │ │ └── View │ │ │ ├── AboutView.swift │ │ │ ├── HomeView.swift │ │ │ ├── PeopleView.swift │ │ │ ├── ProvideFeedbackView.swift │ │ │ ├── ShareIDView.swift │ │ │ ├── SimpleMapView.swift │ │ │ └── ThanksView.swift │ ├── IPC │ │ ├── IPCViewModel.swift │ │ └── Worker.swift │ ├── Onboarding │ │ └── View │ │ │ ├── FifthPageView.swift │ │ │ ├── FirstPageView.swift │ │ │ ├── FourthPageView.swift │ │ │ ├── SecondPageView.swift │ │ │ ├── SixthPageView.swift │ │ │ └── ThirdPageView.swift │ └── Root │ │ └── ContentView.swift ├── LaunchScreen.storyboard ├── Manager │ ├── LocationManager.swift │ └── SQLiteManager.swift ├── Models │ └── People.swift ├── NotificationService.swift ├── NotificationServiceExtension.Info.plist ├── NotificationServiceExtension.entitlements ├── WhereFam.entitlements ├── addons │ ├── .gitignore │ └── addons.yml ├── frameworks │ └── .gitignore ├── js │ ├── app.js │ ├── constants.js │ ├── hyperbee-manager.js │ ├── hyperswarm-manager.js │ ├── ipc.js │ ├── location-manager.js │ ├── map-manager.js │ └── push.js └── style.json ├── images ├── Logo.png └── Mobile.png ├── package.json └── project.yml /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | "prettier-config-standard" 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/README.md -------------------------------------------------------------------------------- /app/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/App.swift -------------------------------------------------------------------------------- /app/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/AppDelegate.swift -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/ChatGPT Image Sep 2, 2025, 10_33_04 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Assets.xcassets/AppIcon.appiconset/ChatGPT Image Sep 2, 2025, 10_33_04 PM.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /app/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /app/Assets.xcassets/logo.imageset/ChatGPT Image Sep 2, 2025, 10_33_04 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Assets.xcassets/logo.imageset/ChatGPT Image Sep 2, 2025, 10_33_04 PM.png -------------------------------------------------------------------------------- /app/Assets.xcassets/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Assets.xcassets/logo.imageset/Contents.json -------------------------------------------------------------------------------- /app/Core/Home/View/AboutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Core/Home/View/AboutView.swift -------------------------------------------------------------------------------- /app/Core/Home/View/HomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Core/Home/View/HomeView.swift -------------------------------------------------------------------------------- /app/Core/Home/View/PeopleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Core/Home/View/PeopleView.swift -------------------------------------------------------------------------------- /app/Core/Home/View/ProvideFeedbackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Core/Home/View/ProvideFeedbackView.swift -------------------------------------------------------------------------------- /app/Core/Home/View/ShareIDView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Core/Home/View/ShareIDView.swift -------------------------------------------------------------------------------- /app/Core/Home/View/SimpleMapView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Core/Home/View/SimpleMapView.swift -------------------------------------------------------------------------------- /app/Core/Home/View/ThanksView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Core/Home/View/ThanksView.swift -------------------------------------------------------------------------------- /app/Core/IPC/IPCViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Core/IPC/IPCViewModel.swift -------------------------------------------------------------------------------- /app/Core/IPC/Worker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Core/IPC/Worker.swift -------------------------------------------------------------------------------- /app/Core/Onboarding/View/FifthPageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Core/Onboarding/View/FifthPageView.swift -------------------------------------------------------------------------------- /app/Core/Onboarding/View/FirstPageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Core/Onboarding/View/FirstPageView.swift -------------------------------------------------------------------------------- /app/Core/Onboarding/View/FourthPageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Core/Onboarding/View/FourthPageView.swift -------------------------------------------------------------------------------- /app/Core/Onboarding/View/SecondPageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Core/Onboarding/View/SecondPageView.swift -------------------------------------------------------------------------------- /app/Core/Onboarding/View/SixthPageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Core/Onboarding/View/SixthPageView.swift -------------------------------------------------------------------------------- /app/Core/Onboarding/View/ThirdPageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Core/Onboarding/View/ThirdPageView.swift -------------------------------------------------------------------------------- /app/Core/Root/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Core/Root/ContentView.swift -------------------------------------------------------------------------------- /app/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/LaunchScreen.storyboard -------------------------------------------------------------------------------- /app/Manager/LocationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Manager/LocationManager.swift -------------------------------------------------------------------------------- /app/Manager/SQLiteManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Manager/SQLiteManager.swift -------------------------------------------------------------------------------- /app/Models/People.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/Models/People.swift -------------------------------------------------------------------------------- /app/NotificationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/NotificationService.swift -------------------------------------------------------------------------------- /app/NotificationServiceExtension.Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/NotificationServiceExtension.Info.plist -------------------------------------------------------------------------------- /app/NotificationServiceExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/NotificationServiceExtension.entitlements -------------------------------------------------------------------------------- /app/WhereFam.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/WhereFam.entitlements -------------------------------------------------------------------------------- /app/addons/.gitignore: -------------------------------------------------------------------------------- 1 | *.xcframework 2 | -------------------------------------------------------------------------------- /app/addons/addons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/addons/addons.yml -------------------------------------------------------------------------------- /app/frameworks/.gitignore: -------------------------------------------------------------------------------- 1 | BareKit.xcframework 2 | -------------------------------------------------------------------------------- /app/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/js/app.js -------------------------------------------------------------------------------- /app/js/constants.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | PMTILES_KEY: 3 | '1bfbdb63cf530380fc9ad1a731766d597c3915e32187aeecea36d802bda2c51d' 4 | } 5 | -------------------------------------------------------------------------------- /app/js/hyperbee-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/js/hyperbee-manager.js -------------------------------------------------------------------------------- /app/js/hyperswarm-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/js/hyperswarm-manager.js -------------------------------------------------------------------------------- /app/js/ipc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/js/ipc.js -------------------------------------------------------------------------------- /app/js/location-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/js/location-manager.js -------------------------------------------------------------------------------- /app/js/map-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/js/map-manager.js -------------------------------------------------------------------------------- /app/js/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/js/push.js -------------------------------------------------------------------------------- /app/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/app/style.json -------------------------------------------------------------------------------- /images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/images/Logo.png -------------------------------------------------------------------------------- /images/Mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/images/Mobile.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/package.json -------------------------------------------------------------------------------- /project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jj10133/WhereFam-iOS/HEAD/project.yml --------------------------------------------------------------------------------