Skip to content

Commit 7c92288

Browse files
chore: creates new folders and moves pages (#2185)
* chore: creates new folders and moves pages * Update index.md * Update directives.md * Update utils.md * Update index.md * Update index.md * Update index.md * Update index.md * Update index.md * Update context-gateway.md * Update context-gateway.md * Update index.md * Update index.md * Update index.md * Update directives.md * Update index.md * Update index.md * Update index.md * Update index.md * Update text and links * Update link * removed bound --------- Co-authored-by: sushmangupta <s.gupta@shopware.com>
1 parent a27f8cc commit 7c92288

File tree

32 files changed

+652
-525
lines changed

32 files changed

+652
-525
lines changed

.gitbook.yaml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,4 +160,23 @@ redirects:
160160
guides/plugins/plugins/api/: guides/plugins/plugins/integrations/commercial/
161161
guides/plugins/plugins/api/customer-specific-pricing.html: guides/plugins/plugins/integrations/commercial/customer-specific-pricing.html
162162
guides/plugins/plugins/api/multi-inventory.html: guides/plugins/plugins/integrations/commercial/multi-inventory.html
163-
plugins/plugins/api/index.html: concepts/api/index.html
163+
plugins/plugins/api/index.html: concepts/api/index.html
164+
resources/guidelines/code/cart-process.html: guides/plugins/plugins/architecture/cart-process.html
165+
resources/guidelines/code/context-rules-rule-systems.html: guides/plugins/plugins/architecture/context-rules-rule-systems.html
166+
resources/guidelines/code/dependency-injection-dependency-handling.html: guides/plugins/plugins/architecture/dependency-injection-dependency-handling.html
167+
resources/guidelines/code/events.html: guides/plugins/plugins/architecture/events.html
168+
resources/guidelines/code/pageloader.html: guides/plugins/plugins/architecture/pageloader.html
169+
resources/references/administration-reference/directives.html: guides/plugins/plugins/administration/administration-reference/directives.html
170+
resources/references/administration-reference/index.html: guides/plugins/plugins/administration/administration-reference/index.html
171+
resources/references/administration-reference/mixins.html: guides/plugins/plugins/administration/administration-reference/mixins.html
172+
resources/references/administration-reference/utils.html: guides/plugins/plugins/administration/administration-reference/utils.html
173+
resources/references/api-reference/index.html: guides/development/integrations-api/index.html
174+
resources/references/core-reference/dal-reference/aggregations-reference.html: guides/development/troubleshooting/dal-reference/aggregations-reference.html
175+
resources/references/core-reference/dal-reference/fields-reference/enum-field.html: guides/development/troubleshooting/dal-reference/fields-reference/enum-field.html
176+
resources/references/core-reference/dal-reference/fields-reference/index.html: guides/development/troubleshooting/dal-reference/fields-reference/index.html
177+
resources/references/core-reference/dal-reference/filters-reference.html: guides/development/troubleshooting/dal-reference/filters-reference.html
178+
resources/references/core-reference/dal-reference/flags-reference.html: guides/development/troubleshooting/dal-reference/flags-reference.html
179+
resources/references/core-reference/dal-reference/index.html: guides/development/troubleshooting/dal-reference/index.html
180+
resources/references/core-reference/flow-reference.html: guides/development/troubleshooting/flow-reference.html
181+
resources/references/core-reference/rules-reference.html: guides/development/troubleshooting/rules-reference.html
182+
guides/hosting/installation-updates/extension-managment.html: guides/hosting/installation-updates/extension-management.html

guides/development/index.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ To build an [Extensions](extensions/index.md), first choose the correct type:
3535

3636
Each extension guide walks you through the full development flow: creation → lifecycle → implementation → testing.
3737

38-
To sell an extension or offer paid features, see the [Monetization guide](./monetization) for available models such as paid extensions, In-App Purchases, and commission-based integrations.
38+
To sell an extension or offer paid features, see the [Monetization guide](monetization/index.md) for available models such as paid extensions, In-App Purchases, and commission-based integrations.
3939

4040
## Typical development workflow
4141

@@ -57,7 +57,7 @@ Before starting new development, review the [Upgrades and Migrations](../upgrade
5757
Upgrade complexity depends on the installation:
5858

5959
* Heavy custom code increases migration effort.
60-
* No custom code but 60 Store plugins can be equally complex.
60+
* No custom code, but 60 Store plugins can be equally complex.
6161
* Most real-world projects fall somewhere in between.
6262

6363
A consistent architecture, centralized CI, and controlled extension strategy help you get ahead of upgrade pain.
@@ -82,7 +82,11 @@ The Administration is part of the runtime environment and will be used throughou
8282

8383
### Development tooling
8484

85-
* `bin/console`: Shopware's built-in CLI, used for installing and activating plugins, running database migrations, clearing caches, executing scheduled tasks, and inspecting system state. See [command reference guide](resources/references/core-reference/commands-reference.html).
86-
* The standalone [Shopware CLI](https://developer.shopware.com/docs/products/cli/installation.html) supports project scaffolding, CI/CD workflows, automation tasks, and more. See the [helper commands guide](products/cli/project-commands/helper-commands.html).
87-
* IDE support: Shopware provides a [PHPStorm plugin](/tooling/shopware-toolbox.md) and [VS Code extension](https://marketplace.visualstudio.com/items?itemName=shopware.shopware-lsp).
88-
*[Deployment Helper](guides/hosting/deployment-helper/): Supports database and maintenance operations for deployments (e.g., migrations, cache handling).
85+
* `bin/console`: Shopware's built-in CLI, used for installing and activating plugins, running database migrations, clearing caches, executing scheduled tasks, and inspecting system state. See [command reference guide](../../resources/references/core-reference/commands-reference.md).
86+
* The standalone [Shopware CLI](../../products/cli/installation.md) supports project scaffolding, CI/CD workflows, automation tasks, and more. See the [helper commands guide](../../products/cli/project-commands/helper-commands.md).
87+
* IDE support: Shopware provides a [PHPStorm plugin](tooling/shopware-toolbox.md) and [VS Code extension](https://marketplace.visualstudio.com/items?itemName=shopware.shopware-lsp).
88+
* [Deployment Helper](../hosting/installation-updates/deployments/deployment-helper.md): Supports database and maintenance operations for deployments (e.g., migrations, cache handling).
89+
90+
### Troubleshooting
91+
92+
The [troubleshooting](troubleshooting/index.md) guides provide reference information about the data abstraction layer (DAL), flow, and rules.

0 commit comments

Comments
 (0)