Quick Start

Get up and running with AutoDeployBase in under 5 minutes. Create production-ready full-stack applications with a single command.

1

Create a new project

Run the create command and follow the interactive prompts to select your framework, archetype, and plugins.

npx autodeploybase create my-app
2

Install dependencies

Navigate to your new project directory and install the dependencies.

cd my-app && npm install
3

Start developing

Start the development server and begin building your application.

npm run dev

What you get

Production-ready project structure
TypeScript configuration
Database setup with Prisma
Authentication ready
Tailwind CSS styling
Deployment configs included

Full Documentation

Explore our comprehensive documentation for detailed guides on CLI commands, plugin development, deployment options, and more.

Common Commands

# Create a new project
npx autodeploybase create my-app
# Create with specific archetype
npx autodeploybase create my-app --archetype saas
# Add a plugin to existing project
npx autodeploybase add auth-jwt
# List available plugins
npx autodeploybase plugins list