Skip to content

Latest commit

 

History

History
 
 

create-eliza-app

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

create-eliza-app

A minimal CLI tool to scaffold ELIZA applications with zero configuration. Get started building your own ELIZA-style chatbot in seconds.

npm version npm downloads bundle size

Usage

You can create a new ELIZA app with your preferred package manager:

# npm
npx create-eliza-app@latest path

# pnpm
pnpm dlx create-eliza-app@latest path

# bun
bunx create-eliza-app@latest path

# deno
deno run -A npm:create-eliza-app@latest path

Command Line Arguments

  • --name: Name of the template to use (default: "eliza")
  • --dir: Directory where the project will be created (default: current directory)
  • --registry: Custom registry URL for templates

Getting Started

Once your project is created:

  1. Navigate to the project directory:

    cd your-project-name
  2. Copy the example environment file:

    cp .env.example .env
  3. Install dependencies:

    pnpm install
  4. Start the development server:

    pnpm start

🤖 auto updated with automd