mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 09:02:08 +02:00
hatch: add Spanish translation (#15018)
This commit is contained in:
parent
beda78530d
commit
dfc4d8bc38
1 changed files with 29 additions and 0 deletions
29
pages.es/common/hatch.md
Normal file
29
pages.es/common/hatch.md
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
# hatch
|
||||||
|
|
||||||
|
> Gestor de proyectos Python moderno y extensible.
|
||||||
|
> Vea también: `poetry`.
|
||||||
|
> Más información: <https://hatch.pypa.io/latest/cli/reference/>.
|
||||||
|
|
||||||
|
- Crea un nuevo proyecto Hatch:
|
||||||
|
|
||||||
|
`hatch new {{nombre_del_proyecto}}`
|
||||||
|
|
||||||
|
- Inicializa Hatch para un proyecto existente:
|
||||||
|
|
||||||
|
`hatch new --init`
|
||||||
|
|
||||||
|
- Construye un proyecto Hatch:
|
||||||
|
|
||||||
|
`hatch build`
|
||||||
|
|
||||||
|
- Elimina artefactos de construcción:
|
||||||
|
|
||||||
|
`hatch clean`
|
||||||
|
|
||||||
|
- Crea un entorno por defecto con las dependencias definidas en el archivo `pyproject.toml`:
|
||||||
|
|
||||||
|
`hatch env create`
|
||||||
|
|
||||||
|
- Muestra las dependencias del entorno en forma de tabla:
|
||||||
|
|
||||||
|
`hatch dep show table`
|
Loading…
Add table
Reference in a new issue