buildless-cli 0.1.8 → 0.1.10

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.
Files changed (46) hide show
  1. package/README.md +0 -20
  2. package/dist/index.js +2347 -83
  3. package/dist/index.js.map +1 -1
  4. package/package.json +4 -3
  5. package/dist/ai.d.ts +0 -8
  6. package/dist/ai.d.ts.map +0 -1
  7. package/dist/ai.js +0 -25
  8. package/dist/ai.js.map +0 -1
  9. package/dist/app.d.ts +0 -9
  10. package/dist/app.d.ts.map +0 -1
  11. package/dist/app.js +0 -67
  12. package/dist/app.js.map +0 -1
  13. package/dist/auth.d.ts +0 -14
  14. package/dist/auth.d.ts.map +0 -1
  15. package/dist/auth.js +0 -100
  16. package/dist/auth.js.map +0 -1
  17. package/dist/config.d.ts +0 -14
  18. package/dist/config.d.ts.map +0 -1
  19. package/dist/config.js +0 -45
  20. package/dist/config.js.map +0 -1
  21. package/dist/firestore.d.ts +0 -28
  22. package/dist/firestore.d.ts.map +0 -1
  23. package/dist/firestore.js +0 -340
  24. package/dist/firestore.js.map +0 -1
  25. package/dist/index.d.ts +0 -3
  26. package/dist/index.d.ts.map +0 -1
  27. package/dist/log.d.ts +0 -3
  28. package/dist/log.d.ts.map +0 -1
  29. package/dist/log.js +0 -10
  30. package/dist/log.js.map +0 -1
  31. package/dist/ui/app-search.d.ts +0 -11
  32. package/dist/ui/app-search.d.ts.map +0 -1
  33. package/dist/ui/app-search.js +0 -83
  34. package/dist/ui/app-search.js.map +0 -1
  35. package/dist/ui/runner.d.ts +0 -14
  36. package/dist/ui/runner.d.ts.map +0 -1
  37. package/dist/ui/runner.js +0 -506
  38. package/dist/ui/runner.js.map +0 -1
  39. package/dist/ui/useRunnerRenderSource.d.ts +0 -53
  40. package/dist/ui/useRunnerRenderSource.d.ts.map +0 -1
  41. package/dist/ui/useRunnerRenderSource.js +0 -69
  42. package/dist/ui/useRunnerRenderSource.js.map +0 -1
  43. package/dist/ui/useRunnerSession.d.ts +0 -16
  44. package/dist/ui/useRunnerSession.d.ts.map +0 -1
  45. package/dist/ui/useRunnerSession.js +0 -188
  46. package/dist/ui/useRunnerSession.js.map +0 -1
package/README.md CHANGED
@@ -23,23 +23,3 @@ In runner:
23
23
 
24
24
  - press `x` (or `q`) to return to app list
25
25
  - press `Ctrl+C` to exit CLI
26
-
27
- ## Configuration
28
-
29
- The CLI works out of the box with production defaults. Environment variables are available for development or custom setups:
30
-
31
- - `BLO_WEB_ORIGIN` (default: `https://buildless.online`)
32
- - `BLO_TERMINAL_URL` (default: `https://buildless.online`)
33
- - `BLO_FIREBASE_PROJECT_ID` (default: `buildless-online`)
34
- - `BLO_CONFIG_PATH` (optional, overrides config path)
35
-
36
- Config file is stored at:
37
-
38
- - `~/.config/blo/cli.json` (Linux/macOS)
39
-
40
- ## Development
41
-
42
- ```bash
43
- # Local development (connects to local servers)
44
- BLO_FIREBASE_PROJECT_ID=papp-dev-7a5b4 BLO_WEB_ORIGIN=http://localhost:3005 BLO_TERMINAL_URL=http://localhost:8080 pnpm dev:cli
45
- ```