Skip to main content

Create a Project

Adding Projects

To create a new project in Lucy, use the following command in your terminal:

lucy new project DEMO --name "Demo Project"

This command will create a new project with the project key DEMO and name "Demo Project".

note

The project key must be unique and can only contain letters, numbers, underscores, and hyphens. Keys are stored in their uppercase variant, and treated as case-insensitive.

See the command reference for more options available when creating a new project.

Updating Projects

To update the details of an existing project, such as its name or description, use the following command:

lucy update project DEMO --description "This is a demo project."
tip

To update the project key use the --new-key option. By default, associated ticket keys will not be updated. To also update associated tickets, use the --cascade-rename flag when updating the project.

See the command reference for more options available when updating a project.

Deleting Projects

To delete an existing project, use the following command:

lucy delete project DEMO

This command will permanently remove the project with the key DEMO from Lucy.

danger

This action is irreversible and will delete all associated project stauses and tickets.

See the command reference for more information on deleting projects.

Visualizing Projects

List

To list all projects in Lucy, use the following command:

lucy list projects

List Projects Demo Output

See the command reference for more options available when listing projects.

Show

To view the details of a specific project, use the following command:

lucy show project DEMO

Show Project Demo Output

See the command reference for more options available when viewing project details.

Conclusion

Congratulations! You have successfully created a new project in Lucy. Next, you should define the workflow for your project by customizing its statuses.