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.
- package/README.md +0 -20
- package/dist/index.js +2347 -83
- package/dist/index.js.map +1 -1
- package/package.json +4 -3
- package/dist/ai.d.ts +0 -8
- package/dist/ai.d.ts.map +0 -1
- package/dist/ai.js +0 -25
- package/dist/ai.js.map +0 -1
- package/dist/app.d.ts +0 -9
- package/dist/app.d.ts.map +0 -1
- package/dist/app.js +0 -67
- package/dist/app.js.map +0 -1
- package/dist/auth.d.ts +0 -14
- package/dist/auth.d.ts.map +0 -1
- package/dist/auth.js +0 -100
- package/dist/auth.js.map +0 -1
- package/dist/config.d.ts +0 -14
- package/dist/config.d.ts.map +0 -1
- package/dist/config.js +0 -45
- package/dist/config.js.map +0 -1
- package/dist/firestore.d.ts +0 -28
- package/dist/firestore.d.ts.map +0 -1
- package/dist/firestore.js +0 -340
- package/dist/firestore.js.map +0 -1
- package/dist/index.d.ts +0 -3
- package/dist/index.d.ts.map +0 -1
- package/dist/log.d.ts +0 -3
- package/dist/log.d.ts.map +0 -1
- package/dist/log.js +0 -10
- package/dist/log.js.map +0 -1
- package/dist/ui/app-search.d.ts +0 -11
- package/dist/ui/app-search.d.ts.map +0 -1
- package/dist/ui/app-search.js +0 -83
- package/dist/ui/app-search.js.map +0 -1
- package/dist/ui/runner.d.ts +0 -14
- package/dist/ui/runner.d.ts.map +0 -1
- package/dist/ui/runner.js +0 -506
- package/dist/ui/runner.js.map +0 -1
- package/dist/ui/useRunnerRenderSource.d.ts +0 -53
- package/dist/ui/useRunnerRenderSource.d.ts.map +0 -1
- package/dist/ui/useRunnerRenderSource.js +0 -69
- package/dist/ui/useRunnerRenderSource.js.map +0 -1
- package/dist/ui/useRunnerSession.d.ts +0 -16
- package/dist/ui/useRunnerSession.d.ts.map +0 -1
- package/dist/ui/useRunnerSession.js +0 -188
- 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
|
-
```
|