@base44-preview/cli 0.0.14-pr.93.54ecdc1 → 0.0.15-pr.93.4af3300
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 +7 -5
- package/dist/cli/index.js +9662 -9872
- package/dist/cli/templates/backend-and-client/base44/app.jsonc.ejs +9 -0
- package/dist/cli/templates/backend-only/base44/app.jsonc.ejs +9 -0
- package/package.json +2 -3
- package/dist/cli/templates/backend-and-client/base44/env.local.ejs +0 -9
- package/dist/cli/templates/backend-only/base44/env.local.ejs +0 -9
package/README.md
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Command-line interface for building applications with [Base44's backend service](https://docs.base44.com/developers/backend/overview/introduction).
|
|
4
4
|
|
|
5
|
-
Base44's backend service provides a managed backend for your applications
|
|
5
|
+
Base44's backend service provides a managed backend for your applications, including data storage with entities, serverless functions, authentication, and hosting. The CLI lets you:
|
|
6
6
|
|
|
7
|
-
- **Create projects** from templates
|
|
8
|
-
- **Sync**
|
|
9
|
-
- **Deploy sites** to Base44's hosting platform
|
|
7
|
+
- **Create projects** from templates.
|
|
8
|
+
- **Sync** resources defined in local code with your Base44 backend.
|
|
9
|
+
- **Deploy sites** to Base44's hosting platform.
|
|
10
10
|
|
|
11
11
|
To get started, see the full list of commands below or check out the [documentation](https://docs.base44.com/developers/references/cli/get-started/overview).
|
|
12
12
|
|
|
@@ -44,6 +44,8 @@ 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 resources and site to Base44 |
|
|
48
|
+
| [`eject`](https://docs.base44.com/developers/references/cli/commands/eject) | Create a Base44 backend project from an existing Base44 app |
|
|
47
49
|
| [`link`](https://docs.base44.com/developers/references/cli/commands/link) | Link a local project to a project on Base44 |
|
|
48
50
|
| [`dashboard`](https://docs.base44.com/developers/references/cli/commands/dashboard) | Open the app dashboard in your browser |
|
|
49
51
|
| [`login`](https://docs.base44.com/developers/references/cli/commands/login) | Authenticate with Base44 |
|
|
@@ -68,7 +70,7 @@ base44 --version
|
|
|
68
70
|
|
|
69
71
|
## Alpha
|
|
70
72
|
|
|
71
|
-
The CLI and Base44 backend service are currently in alpha. We're actively improving them based on user feedback. Share your thoughts and feature requests on our [
|
|
73
|
+
The CLI and Base44 backend service are currently in alpha. We're actively improving them based on user feedback. Share your thoughts and feature requests on our [GitHub Discussions](https://github.com/orgs/base44/discussions).
|
|
72
74
|
|
|
73
75
|
Found a bug? [Open an issue](https://github.com/base44/cli/issues).
|
|
74
76
|
|