Project Initialization
Create new qqq projects with qctl init
Basic Usage
Bash
qctl init <project-name>Options
| Flag | Description |
|---|---|
--template | Project template (default, api, full) |
--package | Java package name |
--no-git | Skip 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.appGenerated Structure
Text
my-app/
├── pom.xml
├── src/
│ ├── main/
│ │ └── java/
│ └── test/
│ └── java/
└── .gitignore