Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CLI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.0.21
v0.0.26
4 changes: 2 additions & 2 deletions skills/base44-cli/references/create.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ npx base44 create [name] --path <path> [options]
| `-p, --path <path>` | Path where to create the project | Yes* |
| `-t, --template <id>` | Template ID (see templates below) | No |
| `--deploy` | Build and deploy the site (includes pushing entities) | No |
| `--skills` | Add AI agent skills (default: true) | No |
| `--no-skills` | Skip AI agent skills installation (skills are added by default) | No |

*Required for non-interactive mode. Both `name` and `--path` must be provided together.

Expand Down Expand Up @@ -96,7 +96,7 @@ npx base44 create my-app -p .
npx base44 create my-app -p . --deploy

# Create without adding AI agent skills
npx base44 create my-app -p . --skills=false
npx base44 create my-app -p . --no-skills
```

## What It Does
Expand Down
5 changes: 4 additions & 1 deletion skills/base44-cli/references/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ The command automatically detects and deploys:

1. **Entities** - All `.jsonc` files in `base44/entities/`
2. **Functions** - All functions in `base44/functions/`
3. **Site** - Built files from `site.outputDirectory` (if configured)
3. **Agents** - All agent configurations in `base44/agents/`
4. **Site** - Built files from `site.outputDirectory` (if configured)

## Examples

Expand Down Expand Up @@ -53,6 +54,7 @@ npx base44 deploy -y
5. Deploys all resources in sequence:
- Pushes entity schemas
- Deploys functions
- Pushes agent configurations
- Uploads site files
6. Displays the dashboard URL and app URL (if site was deployed)

Expand Down Expand Up @@ -80,4 +82,5 @@ After successful deployment:
|---------|-------------|
| `base44 entities push` | Push only entities |
| `base44 functions deploy` | Deploy only functions |
| `base44 agents push` | Push only agents |
| `base44 site deploy` | Deploy only the site |
4 changes: 2 additions & 2 deletions skills/base44-cli/references/entities-push.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ The push operation synchronizes your local entity schema with Base44:

## Error Handling

If no entities are found in your project configuration:
If no entities are found in your project:
```bash
$ npx base44 entities push
Error: No entities found in project configuration
No entities found in project
```

## Use Cases
Expand Down
Loading