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-app

This creates a project with:

  • Maven project structure
  • Sample table and process
  • Development configuration
  • Run the Application

    Start the development server:

    Bash
    qctl run

    Open 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.java

    Next Steps

    Continue to Core Concepts to understand the qqq architecture.

    Powered by qqq