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-app2
Install dependencies
Navigate to your new project directory and install the dependencies.
cd my-app && npm install3
Start developing
Start the development server and begin building your application.
npm run devWhat 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 projectnpx autodeploybase create my-app# Create with specific archetypenpx autodeploybase create my-app --archetype saas# Add a plugin to existing projectnpx autodeploybase add auth-jwt# List available pluginsnpx autodeploybase plugins list