Get Started with the Choreo CLI¶
This guide walks you through the following sample use case:
- View applications within a project
- Build an application
- Deploy the application in the development environment
- Promote the application to the production environment
- View Runtime logs
This guide utilized a simple to-do app built with Next.js and two basic environments: Development and Production.
Prerequisites¶
Follow the steps below to install the CLI:
-
Install the Choreo CLI by running the command specific to your operating system:
-
For Linux and Mac OS
-
For Windows (via PowerShell)
-
-
Verify the installation by running the following command:
Step 1: Login to Choreo¶
Run the following command to login to Choreo:
Note
You can generate a Personal Access Token (PAT) and use it instead of interactive login.
Follow the instructions on the console to open the link in the browser and login to Choreo.
Step 2: Create a project¶
A project in Choreo is a logical group of related components that typically represent a single cloud-native application. A project consists of one or more components.
Create a multi-repository project named ‘web-app-project’ by running the following command:
Step 3: Create a Web Application component¶
Note
To perform this action, you should have Create Component permission under COMPONENT-MANAGEMENT permission group. By default, platform engineer role does not have this permission. If you are not supposed to have this permission, you can ask a user who has developer role to create one for you.
In Choreo, a component within your project represents a singular unit of work in a cloud-native application. It can be a microservice, API, web application, or job/task. Each component is associated with a directory path in a Git repository containing the source code for the program.
Note
The Choreo CLI currently supports the following component types:
- Service
- Web Application
- Webhook
- Scheduled Task
- Manual Task
- API Proxy
-
Fork the repository https://github.com/wso2/choreo-sample-todo-list-app. This contains a sample web application that you can use for this guide.
-
To initiate the creation of a Web Application component within your project, use the following command: This triggers a wizard prompting you to provide details for your Git repository and other configurations for your component.
-
Select the option
Enter remote repository URL manually. -
Enter the following values for the prompts.
Prompt value Configure source repository Enter remote repository URL manuallyRemote repository URL Your forked repository Branch mainDirectory .Build-pack nodejsLanguage Version 20.x.xPort 8080Note
The prompts may vary based on the type of component and the chosen build preset.
Step 4: List Components inside Project¶
To list down the components in the project, you can use the following command:
Step 5: View component details¶
To view comprehensive information about the component, including basic details and service endpoint URLs once the services are deployed, you can use the following command:
Step 6: Build the component¶
You must build the components before deploying them to a specific environment. Execute the following command to trigger the build:
To view the builds in Progres:
Step 6.1: View build status¶
To check the status of a specific build, run the following command, replacing
Note
Typically, a build takes approximately 2 to 5 minutes to complete.
Step 6.2: View build logs¶
Once the build is complete, you can view the build logs for verification or debugging purposes. In the unlikely case, the build encounters any issues, the logs will help you troubleshoot.
choreo logs build --project="web-app-project" --component="my-web-app" --deployment-track="main" --build-id=<build_id>
Step 7: Deploy to the Development environment¶
Once the build status indicates successful you can deploy the component in the Development environment by running the following command:
choreo create deployment "my-web-app" --env=Development --project="web-app-project" --build-id=<build-id>
Step 7.1: Verify the deployment in the Development environment¶
After deploying the component, you can retrieve the URL of the deployed web application and open the publicly available web page to verify its behavior. Use the following command to retrieve the URL:
Step 7.2: View runtime logs¶
To observe runtime application logs of the web application in the Development environment, execute the following command:
Step 8: Deploy to the Production environment¶
Once you verify your application in the Development environment, you can proceed to deploy it to the Production environment with the following command:
- Be sure to substitute
with the id obtained after triggering the build.
choreo create deployment "my-web-app" --env=Production --project="web-app-project" --build-id=<build-id>
Step 8.1: Verify the deployment in the Production environment¶
To ensure a successful deployment to the Production environment, retrieve the URL of the deployed web application using the following command:
Congratulations! You successfully deployed your web application in Choreo using the Choreo CLI.
View all CLI functions¶
Discover other functionalities of Choreo by running the following command.