Project Initialization

Create new qqq projects with qctl init

Basic Usage

Bash
qctl init <project-name>

Options

FlagDescription
--templateProject template (default, api, full)
--packageJava package name
--no-gitSkip git initialization

Examples

Bash
# Basic project
qctl init my-app

# API-only project
qctl init my-api --template api

# Custom package
qctl init my-app --package com.mycompany.app

Generated Structure

Text
my-app/
├── pom.xml
├── src/
│   ├── main/
│   │   └── java/
│   └── test/
│       └── java/
└── .gitignore
Powered by qqq