Skip to content
Open
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.35-6-g0f89a25
v0.0.36
1 change: 1 addition & 0 deletions skills/base44-cli/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ npx base44 <command>
| `base44 create` | Create a new Base44 project from a template | [create.md](references/create.md) ⚠️ **MUST READ** |
| `base44 link` | Link an existing local project to Base44 | [link.md](references/link.md) |
| `base44 eject` | Download the code for an existing Base44 project | [eject.md](references/eject.md) |
| `base44 dev` | Start the local development server | [dev.md](references/dev.md) |
| `base44 dashboard open` | Open the app dashboard in your browser | [dashboard.md](references/dashboard.md) |

### Deployment
Expand Down
41 changes: 41 additions & 0 deletions skills/base44-cli/references/dev.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# base44 dev

Start the local development server for the current Base44 project.

## Syntax

```bash
npx base44 dev [options]
```

## Options

| Option | Description | Required |
|--------|-------------|----------|
| `-p, --port <number>` | Port for the development server | No |

## Examples

```bash
# Start the dev server on the default port
npx base44 dev

# Start the dev server on a specific port
npx base44 dev --port 3001
npx base44 dev -p 3001
```

## Notes

- Requires authentication
- Reads project configuration from `base44.config.json`
- Loads local functions and entities and serves them via a local proxy
- The server URL is printed on startup (e.g., `http://localhost:<port>`)

## Related Commands

| Command | Description |
|---------|-------------|
| `base44 deploy` | Deploy all project resources to Base44 |
| `base44 entities push` | Push local entity definitions to Base44 |
| `base44 functions deploy` | Deploy local functions to Base44 |
Loading