Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial version FA installation guide. #2316

Merged
merged 10 commits into from
Nov 28, 2023
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,28 @@ This document describes how to set up an environment for developing in the Oryx

## Install Oryx with the boilerplate project

1. Download the boilerplate project and install dependencies:
1. Clone the boilerplate project and install dependencies.

```shell
git clone https://github.com/spryker/composable-frontend && \
cd composable-frontend && \
npm i
```


2. Optional: To install [Fulfillment App](/docs/pbc/all/warehouse-management-system/{{site.version}}/unified-commerce/fulfillment-app-feature-overview.html) instead of Composable Storefront, checkout the `fulfillment` branch from the boilerplate:

```shell
git checkout fulfillment
```

{% info_block infoBox "Fulfillment App" %}

Fulfillment App is a PWA that comes with an additional build process for the service worker to support offline mode and background sync.

{% endinfo_block %}


2. Run the application:

```shell
Expand Down
Loading