From 7779f529eab23bdfbee5949624c16b2fc6ced072 Mon Sep 17 00:00:00 2001 From: Hyko Date: Sun, 12 Apr 2026 17:01:21 -0400 Subject: [PATCH] docs: update README with scoped registry configuration Separate the registry setup step from the CLI usage command, making it clearer that the `@zen` registry only needs to be configured once via `npm config set` before running `npx @zen/start`. --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 82ee5d7..e45287d 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,15 @@ CLI pour créer un projet Next.js avec le CMS @zen/core ## Utilisation +Configurer le registre pour le scope `@zen` (une seule fois) : + ```bash -npx --registry https://git.hyko.cx/api/packages/zen/npm/ @zen/start +npm config set @zen:registry https://git.hyko.cx/api/packages/zen/npm/ +``` + +Puis lancer le CLI : + +```bash +npx @zen/start ```