Quickstart
Build your first qqq application in 15 minutes
Create a New Project
Use qctl to scaffold a new qqq application:
Bash
qctl init my-app
cd my-appThis creates a project with:
Run the Application
Start the development server:
Bash
qctl runOpen http://localhost:8080 to see your application.
Explore the Code
Text
my-app/
├── pom.xml
└── src/
└── main/
└── java/
└── com/example/
├── MyApp.java
├── tables/
│ └── PersonTable.java
└── processes/
└── GreetProcess.javaNext Steps
Continue to Core Concepts to understand the qqq architecture.