base44 create
Creates a new Base44 project from a template. This command is framework-agnostic and can either scaffold a complete project or add Base44 configuration to an existing project.Critical: Non-Interactive Mode Required
ALWAYS provide both the project name AND--path flag. Without both, the command opens an interactive TUI which agents cannot use properly.
WRONG: npx base44 create
WRONG: npx base44 create my-app
RIGHT: npx base44 create my-app -p ./my-app
Syntax
Arguments & Options
| Argument/Option | Description | Required |
|---|---|---|
name | Project name (positional argument) | Yes* |
-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 |
--no-skills | Skip AI agent skills installation (skills are added by default) | No |
name and --path must be provided together.
Template Selection (CRITICAL - Choose Appropriately)
You MUST select the most appropriate template based on user requirements:| Template ID | When to Use | Example Scenarios |
|---|---|---|
backend-and-client | Creating a NEW full-stack web app from scratch | ”Create a task app”, “Build me a dashboard”, “Make a SaaS app” |
backend-only | Adding Base44 to an EXISTING project OR using a different framework (Next.js, Vue, Svelte, etc.) | ”Add Base44 to my project”, “I want to use Next.js”, “I already have a frontend” |
backend-and-client to provide a complete, production-ready application with Vite + React + Tailwind.
The --path Flag
- For
backend-and-clienttemplate (new projects): Use a new subfolder path - For
backend-onlytemplate (existing projects): Use-p .in the current directory
Workflow: Using backend-only with External Frameworks
CRITICAL: The project folder MUST exist BEFORE running base44 create with backend-only
The backend-only template only adds Base44 configuration files - it does NOT create a frontend. If you need a frontend with a specific framework:
- Create an empty folder manually, then try to run
npx create viteinside it (will fail - folder exists) - Run
base44 createwithbackend-onlyexpecting it to create a frontend (it won’t)
- Run the external framework’s init command FIRST (it creates its own folder)
- Then run
base44 createinside that folder with-p .
Examples
What It Does
- Applies the selected template to the target path
- Creates a
base44/folder with configuration files - Registers the project with Base44 backend
- Creates
base44/.app.jsoncwith the app ID - If
--deployis used:- Pushes any entities defined in
base44/entities/ - Runs install and build commands (for templates with frontend)
- Deploys the site to Base44 hosting
- Pushes any entities defined in

