github.com/replicatedhq/ship@v0.55.0/web/README.md (about)

     1  Ship Web
     2  ========
     3  # Development
     4  To develop on the component and application simultaneously, you will need to run two commands in separate terminals.
     5  Here is an example from the `web` directory:
     6  1. `cd app; yarn start`
     7  2. `cd init; yarn start`
     8  
     9  # Organization
    10  The `web` directory of the Ship project contains 2 folders:
    11  ## `init`
    12  The `init/` folder contains the Ship application as a React component. This allows for embedding the UI in other React applications and being able to point to any Ship binary API using the properties exposed on the component.
    13  
    14  See its README [here](init/README.md)
    15  
    16  ## `app`
    17  The `app/` folder contains the main Ship web application embedded in the Go binary. This folder also contains the E2E tests specifically related to the Ship binary.
    18  
    19  See its README [here](app/README.md)