Create and Manage Projects
You can create projects in RIME to organize your test runs. Test runs are stored in a “default” project when a project is not specified.
Creating a project
Creating a project can be done via SDK.
To begin, initialize the Client
and point it to the location of your RIME backend.
from rime_sdk import Client, ImageType
rime_client = Client("rime.<YOUR_ORG_NAME>.rime.dev", "<YOUR_API_TOKEN>")
Afterwards, projects can be easily created using the create_project()
method, which will return a Project
object.
project = rime_client.create_project("<NAME>", "<DESCRIPTION>")
Other operations with a project
Other operations can all be done via the UI. These operations are:
Renaming projects
Deleting projects
Moving test runs from one project to another