From 1e82cffb86abe1a5e82a1d32caecdc45bdb681da Mon Sep 17 00:00:00 2001
From: Remi  PLANEL <rplanel@pasteur.fr>
Date: Thu, 7 Sep 2023 19:42:19 +0200
Subject: [PATCH] update readme

---
 .gitignore |  1 +
 README.md  | 57 ++++++++++++++++--------------------------------------
 2 files changed, 18 insertions(+), 40 deletions(-)

diff --git a/.gitignore b/.gitignore
index 6585b409..15455131 100755
--- a/.gitignore
+++ b/.gitignore
@@ -8,3 +8,4 @@ node_modules
 .output
 .env
 dist
+*.code-workspace
\ No newline at end of file
diff --git a/README.md b/README.md
index fd9edab4..4c626cda 100755
--- a/README.md
+++ b/README.md
@@ -1,65 +1,42 @@
-# Docus Starter
+# Content v2 Minimal Starter
 
-Starter template for [Docus](https://docus.dev).
-
-## Clone
-
-Clone the repository (using `nuxi`):
-
-```bash
-npx nuxi init -t themes/docus
-```
+Look at the [Content documentation](https://content-v2.nuxtjs.org/) to learn more.
 
 ## Setup
 
-Install dependencies:
+Make sure to install the dependencies:
 
 ```bash
+# yarn
 yarn install
-```
 
-Using docker:
+# npm
+npm install
 
-```bash
-docker run -v "$PWD":/usr/src/app -w /usr/src/app --user 1000:1000 node:19.5-bullseye-slim npm install
+# pnpm
+pnpm install
 ```
 
-## Development
+## Development Server
 
-```bash
-yarn dev
-```
-
-## Edge Side Rendering
-
-Can be deployed to Vercel Functions, Netlify Functions, AWS, and most Node-compatible environments.
-
-Look at all the available presets [here](https://v3.nuxtjs.org/guide/deploy/presets).
+Start the development server on http://localhost:3000
 
 ```bash
-yarn build
+npm run dev
 ```
 
-## Static Generation
-
-Use the `generate` command to build your application.
+## Production
 
-The HTML files will be generated in the .output/public directory and ready to be deployed to any static compatible hosting.
+Build the application for production:
 
 ```bash
-yarn generate
+npm run build
 ```
 
-## Preview build
-
-You might want to preview the result of your build locally, to do so, run the following command:
+Locally preview production build:
 
 ```bash
-yarn preview
+npm run preview
 ```
 
----
-
-For a detailed explanation of how things work, check out [Docus](https://docus.dev).
-
-
+Checkout the [deployment documentation](https://v3.nuxtjs.org/docs/deployment) for more information.
-- 
GitLab