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

Install the File Manager feature #2076

Merged
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@



This document describes how to integrate the [File Manager feature](/docs/scos/user/features/{{site.version}}/file-manager-feature-overview/file-manager-feature-overview.html) into a Spryker project.
This document describes how to integrate the [File Manager feature](/docs/scos/user/features/{{page.version}}/file-manager-feature-overview/file-manager-feature-overview.html) into a Spryker project.

## Install feature core

Expand All @@ -11,14 +11,14 @@ Follow the steps below to install the File Manager feature core.

Install the required features:

| NAME | VERSION | INTEGRATION GUIDE |
|--------------|------------------|--------------------------------------------------------------------------------------------------------------------------------------|
| Spryker Core | {{site.version}} | [Spryker core feature integration](/docs/pbc/all/miscellaneous/{{site.version}}/install-and-upgrade/install-features/install-the-spryker-core-feature.html) |
| NAME | VERSION | INTEGRATION GUIDE |
|--------------|------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Spryker Core | {{page.version}} | [Spryker core feature integration](/docs/pbc/all/miscellaneous/{{page.version}}/install-and-upgrade/install-features/install-the-spryker-core-feature.html) |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
| Spryker Core | {{page.version}} | [Spryker core feature integration](/docs/pbc/all/miscellaneous/{{page.version}}/install-and-upgrade/install-features/install-the-spryker-core-feature.html) |
| Spryker Core | {{page.version}} | [Install the Spryker Core feature](/docs/pbc/all/miscellaneous/{{page.version}}/install-and-upgrade/install-features/install-the-spryker-core-feature.html) |


### 1) Install the required modules using Composer

```bash
composer require spryker-feature/file-manager:"{{site.version}}" --update-with-dependencies
composer require spryker-feature/file-manager:"{{page.version}}" --update-with-dependencies
```

{% info_block warningBox "Verification" %}
Expand Down Expand Up @@ -149,6 +149,13 @@ Ensure the following transfers have been created:

3. Add the following configuration to your project:

{% info_block warningBox "Note" %}

The web server's maximum file size configuration - `max-request-body-size` has higher priority then the module configuration and can be adjusted using `deploy.*.yml`.
For additional details, refer to the [Docker SDK configuration reference](/docs/scos/dev/the-docker-sdk/{{page.version}}/docker-sdk-configuration-reference.html)

{% endinfo_block %}

| CONFIGURATION | SPECIFICATION | NAMESPACE |
|------------------------------------------------|-----------------------|-------------------------------|
| FileManagerConstants::STORAGE_NAME | Storage name | Spryker\Shared\FileManager |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: File Manager feature integration
VadymSachenko marked this conversation as resolved.
Show resolved Hide resolved
description: File Manager lets you upload and manager your assets effectively.
VadymSachenko marked this conversation as resolved.
Show resolved Hide resolved
last_updated: Dec 30, 2022
last_updated: Aug 07, 2023
template: feature-integration-guide-template
related:
VadymSachenko marked this conversation as resolved.
Show resolved Hide resolved
- title: File Manager feature walkthrough
VadymSachenko marked this conversation as resolved.
Show resolved Hide resolved
Expand Down
Loading