@base44-preview/cli 0.0.38-pr.330.d128357 → 0.0.38-pr.370.7812daf
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 +31 -0
- package/dist/cli/index.js +139 -431
- package/dist/cli/index.js.map +13 -20
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -96,3 +96,34 @@ Found a bug? [Open an issue](https://github.com/base44/cli/issues).
|
|
|
96
96
|
## License
|
|
97
97
|
|
|
98
98
|
MIT
|
|
99
|
+
|
|
100
|
+
## Configuration reference
|
|
101
|
+
|
|
102
|
+
The `base44/config.jsonc` file controls project settings:
|
|
103
|
+
|
|
104
|
+
| Field | Type | Default | Description |
|
|
105
|
+
| ----- | ---- | ------- | ----------- |
|
|
106
|
+
| `name` | string | required | App name |
|
|
107
|
+
| `description` | string | — | App description |
|
|
108
|
+
| `visibility` | `"public"` \| `"private"` | — | App visibility. When set, `base44 deploy` syncs this to the server. `"public"` makes the app accessible without login; `"private"` restricts access. Omit to leave the current server setting unchanged. |
|
|
109
|
+
| `site.buildCommand` | string | — | Command to build the site |
|
|
110
|
+
| `site.outputDirectory` | string | — | Directory containing built site files |
|
|
111
|
+
| `site.serveCommand` | string | — | Command to serve the site locally |
|
|
112
|
+
| `site.installCommand` | string | — | Command to install site dependencies |
|
|
113
|
+
| `entitiesDir` | string | `entities` | Directory for entity schemas |
|
|
114
|
+
| `functionsDir` | string | `functions` | Directory for serverless functions |
|
|
115
|
+
| `agentsDir` | string | `agents` | Directory for AI agent configs |
|
|
116
|
+
| `connectorsDir` | string | `connectors` | Directory for connector configs |
|
|
117
|
+
|
|
118
|
+
### Example
|
|
119
|
+
|
|
120
|
+
```jsonc
|
|
121
|
+
{
|
|
122
|
+
"name": "my-app",
|
|
123
|
+
"visibility": "public",
|
|
124
|
+
"site": {
|
|
125
|
+
"buildCommand": "npm run build",
|
|
126
|
+
"outputDirectory": "dist"
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
```
|