@base44-preview/cli 0.0.31-pr.209.624851e → 0.0.31-pr.211.1a71099
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 +10 -11
- package/dist/cli/index.js +27603 -2615
- package/dist/cli/index.js.map +233 -58
- package/package.json +12 -4
package/README.md
CHANGED
|
@@ -43,23 +43,22 @@ The CLI will guide you through project setup. For step-by-step tutorials, see th
|
|
|
43
43
|
|
|
44
44
|
| Command | Description |
|
|
45
45
|
| ------- | ----------- |
|
|
46
|
-
| [`create`](https://docs.base44.com/developers/references/cli/commands/create) | Create a new Base44 project
|
|
47
|
-
| [`deploy`](https://docs.base44.com/developers/references/cli/commands/deploy) | Deploy resources and site
|
|
48
|
-
| [`link`](https://docs.base44.com/developers/references/cli/commands/link) | Link a local project to a project
|
|
46
|
+
| [`create`](https://docs.base44.com/developers/references/cli/commands/create) | Create a new Base44 project |
|
|
47
|
+
| [`deploy`](https://docs.base44.com/developers/references/cli/commands/deploy) | Deploy all project resources (entities, functions, agents, connectors, and site) |
|
|
48
|
+
| [`link`](https://docs.base44.com/developers/references/cli/commands/link) | Link a local project to a Base44 project (create new or link existing) |
|
|
49
|
+
| [`eject`](https://docs.base44.com/developers/references/cli/commands/eject) | Download the code for an existing Base44 project |
|
|
49
50
|
| [`dashboard open`](https://docs.base44.com/developers/references/cli/commands/dashboard) | Open the app dashboard in your browser |
|
|
50
51
|
| [`login`](https://docs.base44.com/developers/references/cli/commands/login) | Authenticate with Base44 |
|
|
51
|
-
| [`logout`](https://docs.base44.com/developers/references/cli/commands/logout) |
|
|
52
|
-
| [`whoami`](https://docs.base44.com/developers/references/cli/commands/whoami) | Display
|
|
53
|
-
| [`agents pull`](https://docs.base44.com/developers/references/cli/commands/agents-pull) | Pull agents from Base44 to local files |
|
|
54
|
-
| [`agents push`](https://docs.base44.com/developers/references/cli/commands/agents-push) | Push local agents to Base44 |
|
|
55
|
-
| [`
|
|
52
|
+
| [`logout`](https://docs.base44.com/developers/references/cli/commands/logout) | Logout from current device |
|
|
53
|
+
| [`whoami`](https://docs.base44.com/developers/references/cli/commands/whoami) | Display current authenticated user |
|
|
54
|
+
| [`agents pull`](https://docs.base44.com/developers/references/cli/commands/agents-pull) | Pull agents from Base44 to local files (replaces all local agent configs) |
|
|
55
|
+
| [`agents push`](https://docs.base44.com/developers/references/cli/commands/agents-push) | Push local agents to Base44 (replaces all remote agent configs) |
|
|
56
|
+
| [`connectors push`](https://docs.base44.com/developers/references/cli/commands/connectors-push) | Push local connectors to Base44 (overwrites connectors on Base44) |
|
|
57
|
+
| [`entities push`](https://docs.base44.com/developers/references/cli/commands/entities-push) | Push local entities to Base44 |
|
|
56
58
|
| [`functions deploy`](https://docs.base44.com/developers/references/cli/commands/functions-deploy) | Deploy local functions to Base44 |
|
|
57
59
|
| [`site deploy`](https://docs.base44.com/developers/references/cli/commands/site-deploy) | Deploy built site files to Base44 hosting |
|
|
58
60
|
| [`site open`](https://docs.base44.com/developers/references/cli/commands/site-open) | Open the published site in your browser |
|
|
59
61
|
|
|
60
|
-
|
|
61
|
-
<!--| [`eject`](https://docs.base44.com/developers/references/cli/commands/eject) | Create a Base44 backend project from an existing Base44 app | -->
|
|
62
|
-
|
|
63
62
|
## AI agent skills
|
|
64
63
|
|
|
65
64
|
When creating a project, [base44/skills](https://github.com/base44/skills) are automatically installed. These help AI agents understand how to work with Base44 projects.
|