base44 0.0.14 → 0.0.15

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.
Files changed (3) hide show
  1. package/README.md +21 -6
  2. package/dist/cli/index.js +3041 -2953
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -23,12 +23,9 @@ base44 login
23
23
  # 2. Create a new project
24
24
  base44 create
25
25
 
26
- # 3. Push entities to Base44
27
- base44 entities push
28
-
29
- # 4. Build and deploy your site
26
+ # 3. Deploy everything (entities, functions, and site)
30
27
  npm run build
31
- base44 site deploy
28
+ base44 deploy
32
29
  ```
33
30
 
34
31
  ## Commands
@@ -46,6 +43,14 @@ base44 site deploy
46
43
  | Command | Description |
47
44
  |---------|-------------|
48
45
  | `base44 create` | Create a new Base44 project from a template |
46
+ | `base44 link` | Link an existing local project to Base44 |
47
+ | `base44 dashboard` | Open the app dashboard in your browser |
48
+
49
+ ### Deployment
50
+
51
+ | Command | Description |
52
+ |---------|-------------|
53
+ | `base44 deploy` | Deploy all resources (entities, functions, and site) |
49
54
 
50
55
  ### Entities
51
56
 
@@ -53,7 +58,13 @@ base44 site deploy
53
58
  |---------|-------------|
54
59
  | `base44 entities push` | Push local entity schemas to Base44 |
55
60
 
56
- ### Site Deployment
61
+ ### Functions
62
+
63
+ | Command | Description |
64
+ |---------|-------------|
65
+ | `base44 functions deploy` | Deploy local functions to Base44 |
66
+
67
+ ### Site
57
68
 
58
69
  | Command | Description |
59
70
  |---------|-------------|
@@ -103,6 +114,10 @@ my-project/
103
114
  │ ├── entities/ # Entity schema files
104
115
  │ │ ├── user.jsonc
105
116
  │ │ └── product.jsonc
117
+ │ └── functions/ # Backend functions
118
+ │ └── my-function/
119
+ │ ├── config.jsonc
120
+ │ └── index.js
106
121
  ├── src/ # Your frontend code
107
122
  ├── dist/ # Built site files (for deployment)
108
123
  └── package.json