experiments in a post-browser web
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: gitignore dev artifacts (BUILD_NUMBER, assets/index.html, devUrl)

These files change every dev session and cause noisy diffs/conflicts.
BUILD_NUMBER and assets/index.html are now gitignored and untracked.
devUrl removed from checked-in tauri.conf.json (dev-ios-sim.sh patches
it temporarily at runtime).

+5 -22
+4
backend/tauri-mobile/.gitignore
··· 31 31 32 32 # Claude Code local settings 33 33 .claude/ 34 + 35 + # Dev artifacts (overwritten every dev session) 36 + BUILD_NUMBER 37 + src-tauri/gen/apple/assets/index.html
-1
backend/tauri-mobile/BUILD_NUMBER
··· 1 - 1066
-19
backend/tauri-mobile/src-tauri/gen/apple/assets/index.html
··· 1 - <!DOCTYPE html> 2 - <html> 3 - <head> 4 - <meta charset="UTF-8"> 5 - <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 - <title>Loading...</title> 7 - <script> 8 - // Redirect to dev server on localhost 9 - // iOS simulator can access Mac's localhost 10 - // Vite is guaranteed running before app launch (dev-ios-sim.sh waits for it) 11 - window.location.href = 'http://localhost:58813/'; 12 - </script> 13 - </head> 14 - <body> 15 - <div style="display: flex; align-items: center; justify-content: center; height: 100vh; font-family: system-ui;"> 16 - Loading dev server... 17 - </div> 18 - </body> 19 - </html>
+1 -2
backend/tauri-mobile/src-tauri/tauri.conf.json
··· 5 5 "identifier": "com.dietrich.peek-mobile", 6 6 "build": { 7 7 "beforeBuildCommand": "npm run build", 8 - "frontendDist": "../dist", 9 - "devUrl": "http://192.168.50.143:58813" 8 + "frontendDist": "../dist" 10 9 }, 11 10 "app": { 12 11 "windows": [