github.com/avenga/couper@v1.12.2/docs/website/README.md (about)

     1  # Couper Documentation Website
     2  
     3  Built with [Nuxt 3](https://v3.nuxtjs.org).
     4  
     5  ## Setup
     6  
     7  Make sure to install the dependencies:
     8  
     9  ```bash
    10  # npm
    11  npm install
    12  ```
    13  
    14  ## Generate Reference and Update Search Index
    15  
    16  ```bash
    17  (cd ../.. && make generate-docs)
    18  ```
    19  
    20  ## Development Server
    21  
    22  Start the development server on http://localhost:3000:
    23  
    24  ```bash
    25  npm run dev
    26  ```
    27  
    28  ## Production
    29  
    30  Build the application for production:
    31  
    32  ```bash
    33  npm run build
    34  ```
    35  
    36  Preview the production build locally:
    37  
    38  ```bash
    39  npm run generate && couper run -f couper.hcl
    40  ```