From 29c5fcd9930a396bf98888a648135e7e0c54423e Mon Sep 17 00:00:00 2001 From: dunqan Date: Mon, 27 Nov 2023 15:38:09 +0100 Subject: [PATCH] rename boilerplate urls --- .../202311.0/oryx/getting-started/oryx-boilerplate.md | 2 +- .../202311.0/oryx/getting-started/set-up-oryx.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/scos/dev/front-end-development/202311.0/oryx/getting-started/oryx-boilerplate.md b/docs/scos/dev/front-end-development/202311.0/oryx/getting-started/oryx-boilerplate.md index e18b30b9976..840839ca22f 100644 --- a/docs/scos/dev/front-end-development/202311.0/oryx/getting-started/oryx-boilerplate.md +++ b/docs/scos/dev/front-end-development/202311.0/oryx/getting-started/oryx-boilerplate.md @@ -10,7 +10,7 @@ redirect_from: Boilerplate refers to the _template_ code that is used to generate application code which can be further customized. At first sight, changing boilerplate is convenient as the code is at hand, generated in your project repository. However, when upgrading to newer versions of the original code, it becomes challenging. If you customized the boilerplate code and want to reapply a new version of the boilerplate, you have to merge the customizations with the new version during every update. This is a time-consuming and error-prone process that can slow down your development process and increase the risk of bugs. -The Oryx boilerplate is provided in the [Composable Frontend repository](https://github.com/spryker/composable-frontend). +The Oryx boilerplate is provided in the [Composable Frontend repository](https://github.com/spryker/oryx-starter). ## How we prevent boilerplate code diff --git a/docs/scos/dev/front-end-development/202311.0/oryx/getting-started/set-up-oryx.md b/docs/scos/dev/front-end-development/202311.0/oryx/getting-started/set-up-oryx.md index b7253d24e9f..61e214a6b13 100644 --- a/docs/scos/dev/front-end-development/202311.0/oryx/getting-started/set-up-oryx.md +++ b/docs/scos/dev/front-end-development/202311.0/oryx/getting-started/set-up-oryx.md @@ -7,7 +7,7 @@ redirect_from: - /docs/scos/dev/front-end-development/202311.0/oryx/set-up-oryx.html --- -This document describes how to set up an environment for developing in the Oryx framework. We provide a [boilerplate project](https://github.com/spryker/composable-frontend) that helps you quickstart the development. It contains minimum dependencies and configuration to install a standard Oryx application. +This document describes how to set up an environment for developing in the Oryx framework. We provide a [boilerplate project](https://github.com/spryker/oryx-starter) that helps you quickstart the development. It contains minimum dependencies and configuration to install a standard Oryx application. ## Prerequisites @@ -19,8 +19,8 @@ This document describes how to set up an environment for developing in the Oryx 1. Download the boilerplate project and install dependencies: ```shell -git clone https://github.com/spryker/composable-frontend && \ -cd composable-frontend && \ +git clone https://github.com/spryker/oryx-starter && \ +cd oryx-starter && \ npm i ```