@base44-preview/cli 0.0.33-pr.286.ddceb19 → 0.0.33-pr.331.8d14c8e
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 +8 -4
- package/dist/cli/index.js +402 -236
- package/dist/cli/index.js.map +16 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -44,9 +44,9 @@ The CLI will guide you through project setup. For step-by-step tutorials, see th
|
|
|
44
44
|
| Command | Description |
|
|
45
45
|
| ------- | ----------- |
|
|
46
46
|
| [`create`](https://docs.base44.com/developers/references/cli/commands/create) | Create a new Base44 project from a template |
|
|
47
|
-
| [`deploy`](https://docs.base44.com/developers/references/cli/commands/deploy) | Deploy
|
|
47
|
+
| [`deploy`](https://docs.base44.com/developers/references/cli/commands/deploy) | Deploy resources and site to Base44 |
|
|
48
|
+
| [`link`](https://docs.base44.com/developers/references/cli/commands/link) | Link a local project to a project on Base44 |
|
|
48
49
|
| [`eject`](https://docs.base44.com/developers/references/cli/commands/eject) | Download the code for an existing Base44 project |
|
|
49
|
-
| [`link`](https://docs.base44.com/developers/references/cli/commands/link) | Link a local project to a Base44 project |
|
|
50
50
|
| [`dashboard open`](https://docs.base44.com/developers/references/cli/commands/dashboard) | Open the app dashboard in your browser |
|
|
51
51
|
| [`login`](https://docs.base44.com/developers/references/cli/commands/login) | Authenticate with Base44 |
|
|
52
52
|
| [`logout`](https://docs.base44.com/developers/references/cli/commands/logout) | Sign out and clear stored credentials |
|
|
@@ -55,8 +55,12 @@ The CLI will guide you through project setup. For step-by-step tutorials, see th
|
|
|
55
55
|
| [`agents push`](https://docs.base44.com/developers/references/cli/commands/agents-push) | Push local agents to Base44 |
|
|
56
56
|
| [`connectors pull`](https://docs.base44.com/developers/references/cli/commands/connectors-pull) | Pull connectors from Base44 to local files |
|
|
57
57
|
| [`connectors push`](https://docs.base44.com/developers/references/cli/commands/connectors-push) | Push local connectors to Base44 |
|
|
58
|
-
| [`entities push`](https://docs.base44.com/developers/references/cli/commands/entities-push) | Push local
|
|
58
|
+
| [`entities push`](https://docs.base44.com/developers/references/cli/commands/entities-push) | Push local entity schemas to Base44 |
|
|
59
|
+
| [`functions new`](https://docs.base44.com/developers/references/cli/commands/functions-new) | Create a new backend function from template |
|
|
59
60
|
| [`functions deploy`](https://docs.base44.com/developers/references/cli/commands/functions-deploy) | Deploy local functions to Base44 |
|
|
61
|
+
| [`functions pull`](https://docs.base44.com/developers/references/cli/commands/functions-pull) | Pull deployed functions from Base44 to local files |
|
|
62
|
+
| [`functions list`](https://docs.base44.com/developers/references/cli/commands/functions-list) | List deployed backend functions |
|
|
63
|
+
| [`functions delete`](https://docs.base44.com/developers/references/cli/commands/functions-delete) | Delete a deployed backend function |
|
|
60
64
|
| [`site deploy`](https://docs.base44.com/developers/references/cli/commands/site-deploy) | Deploy built site files to Base44 hosting |
|
|
61
65
|
| [`site open`](https://docs.base44.com/developers/references/cli/commands/site-open) | Open the published site in your browser |
|
|
62
66
|
| [`types generate`](https://docs.base44.com/developers/references/cli/commands/types-generate) | Generate TypeScript types from project resources |
|
|
@@ -92,4 +96,4 @@ Found a bug? [Open an issue](https://github.com/base44/cli/issues).
|
|
|
92
96
|
|
|
93
97
|
## License
|
|
94
98
|
|
|
95
|
-
|
|
99
|
+
ISC
|