HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

pixi task — Manage tasks in the project environment. More information: <https://pixi.sh/latest/reference/cli/#ta

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandclimanageenvironmentpixi tasktasksproject

Problem

How to use the pixi task command: Manage tasks in the project environment. More information: <https://pixi.sh/latest/reference/cli/#task>.

Solution

pixi task — Manage tasks in the project environment. More information: <https://pixi.sh/latest/reference/cli/#task>.

Create a new task:
pixi task add {{task_name}} {{task_command}}


List all tasks in the project:
pixi task list


Remove a task:
pixi task remove {{task_name}}


Create an alias for a task:
pixi task alias {{alias_name}} {{task1 task2 ...}}

Code Snippets

Create a new task

pixi task add {{task_name}} {{task_command}}

List all tasks in the project

pixi task list

Remove a task

pixi task remove {{task_name}}

Create an alias for a task

pixi task alias {{alias_name}} {{task1 task2 ...}}

Context

tldr-pages: common/pixi task

Revisions (0)

No revisions yet.