Examples
Real-world examples and starter templates for common development scenarios
Documentation
Examples
Starter Examples
Production-ready templates to kickstart your development environment.
Quick Start Templates
Node.js Starter
Basic Node.js setup with TypeScript and testing configuration.
zapz setup --template node-basic
- Node.js LTS
- TypeScript
- Jest + ESLint
- VS Code settings
Next.js Full Stack
Complete Next.js 13+ setup with database and authentication.
zapz setup --template nextjs-full
- Next.js 13+
- Prisma + PostgreSQL
- NextAuth.js
- Docker compose
Featured Example
Enterprise Ready
Team Development Setup
Complete development environment for teams with shared configurations and CI/CD integration.
Team Workflow
Shared ESLint, Prettier, and Git hooks
Docker Ready
Development containers with hot reload
CI/CD Pipeline
GitHub Actions workflow included
Security First
Security scanning and best practices
services:
app:
build:
context: .
target: development
volumes:
- .:/app
- /app/node_modules
ports:
- "3000:3000"
depends_on:
- db