tide-commander 0.78.1 → 0.80.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/dist/assets/{main-B3ggaJoY.js → main-DLhL06nK.js} +94 -93
- package/dist/assets/main-DsPovOaA.css +1 -0
- package/dist/assets/{web-Cjmp1lCs.js → web-GvAkFt2u.js} +1 -1
- package/dist/index.html +2 -2
- package/dist/src/packages/server/claude/runner/stdout-pipeline.js +32 -1
- package/dist/src/packages/server/data/builtin-skills/release-pipeline.js +43 -6
- package/package.json +1 -1
- package/dist/assets/main-D893RHwB.css +0 -1
package/README.md
CHANGED
|
@@ -397,10 +397,15 @@ make apk
|
|
|
397
397
|
|
|
398
398
|
# Or build release APK
|
|
399
399
|
make apk-release
|
|
400
|
+
|
|
401
|
+
# Build debug APK pointing to a live dev server
|
|
402
|
+
make dev-apk CAP_SERVER_URL=http://192.168.1.100:5173
|
|
400
403
|
```
|
|
401
404
|
|
|
402
405
|
The APK will be at `android/app/build/outputs/apk/debug/app-debug.apk`.
|
|
403
406
|
|
|
407
|
+
For non-dev APKs, make sure `CAP_SERVER_URL` is unset before building.
|
|
408
|
+
|
|
404
409
|
To configure which server the app connects to, set `LISTEN_ALL_INTERFACES=1` on your server and update the server URL in the app settings.
|
|
405
410
|
|
|
406
411
|
## 🐛 Troubleshooting
|