github.com/freiheit-com/kuberpult@v1.24.2-0.20240328135542-315d5630abe6/services/frontend-service/README.md (about)

     1  # Running locally
     2  
     3  ## Initial Setup
     4  
     5  ```shell
     6  pnpm i
     7  make all
     8  ```
     9  
    10  ## frontend-service
    11  
    12  `make all run`
    13  
    14  ## ui
    15  
    16  To start the ui itself, run
    17  ```shell
    18  (cd ../../pkg/api/; make all)
    19  pnpm i && pnpm start
    20  ```
    21  
    22  ## other
    23  
    24  Note that you probably also need the `cd-service`.
    25  `cd ../cd-service; WITHOUT_DOCKER=true make run`
    26  
    27  
    28  # Deploy
    29  
    30  Run this, but adapt the image name first for the project (here 'nemo')
    31  ```shell
    32  make clean
    33  pnpm i
    34  make release
    35  ```
    36  
    37  # Run javascript tests
    38  To run the javascript tests interactively, run
    39  ```shell
    40  pnpm test
    41  ```