create-tambo-app
v0.3.0
Published
Create a new Tambo application
Downloads
1,048
Readme
create-tambo-app
A command-line tool to create new Tambo applications with zero configuration.
Overview
create-tambo-app is the official way to create new tambo applications. It provides a streamlined experience for setting up new tambo projects with all the necessary configurations and dependencies.
Requirements
- Node.js >= 20
- npm >= 10
Quick Start
You can create a new Tambo application using any of these methods:
# Using npm
npm create tambo-app@latest my-app
# Using yarn
yarn create tambo-app my-app
# Using pnpm
pnpm create tambo-app my-app
# Using npx directly
npx create-tambo-app my-appCommand Line Options
All arguments passed to create-tambo-app will be forwarded to the Tambo CLI's create-app command. For example:
npm create tambo-app@latest my-appWhat Happens
When you run create-tambo-app, it will:
- Clone the selected template
- Install dependencies
- Initialize a git repository with an initial commit
- Run
tambo initto set up your API key (interactive)
What's Next?
After creating your application:
- Navigate to your project directory:
cd my-app - Start the development server:
npm run dev - Open your browser to see your new Tambo application
Skip Automatic Setup
If you want to skip the automatic setup steps, use these flags:
npm create tambo-app@latest my-app --skip-git-init # Skip git initialization
npm create tambo-app@latest my-app --skip-tambo-init # Skip tambo initLicense
This project is part of the Tambo ecosystem. See the Tambo repository for license details.
