Skip to content

Commit 15fdd75

Browse files
authored
Merge pull request #23 from magento-devdocs/MAGEDOC-3634
MAGEDOC-3634: Update installation docs for release
2 parents 6398729 + 82327a0 commit 15fdd75

File tree

1 file changed

+8
-58
lines changed

1 file changed

+8
-58
lines changed
Lines changed: 8 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,14 @@
11
# Install Page Builder
22

3-
How you install the pre-release version of Page Builder depends on whether you are a member of the Early Adopters Program (EAP):
3+
Page Builder is automatically installed with Magento Commerce 2.3.1. There is nothing else you need to do. However, If you want to contribute to the Page Builder code or documentation, you can use the GitHub installation as follows.
44

5-
- **All Partners** (not EAP members) must use the [GitHub installation](#githubInstructions).
6-
- **EAP Members** can install using the [Composer installation](#composerInstallation).
5+
## GitHub installation for Contributors
76

8-
## Prerequisite for both installations
7+
Before installing Page Builder for making contributions, make sure you have the following prerequisites:
98

10-
Magento Commerce 2.3+ -- Use the installation instructions from the [DevDocs installation guide](https://devdocs.magento.com/guides/v2.3/install-gde/bk-install-guide.html).
11-
12-
## **All Partners**: GitHub Installation {#githubInstructions}
13-
14-
Partners who are not members of the Early Adopters Program (EAP) must install the pre-release version of Page Builder by cloning the Page Builder GitHub repository (https://github.com/magento/magento2-page-builder) into a development instance of Magento.
15-
Before installing Page Builder, make sure you have:
16-
17-
* A local development installation of Magento Commerce 2.3+
18-
* Access to the Page Builder repository
19-
* [npm package manager](https://www.npmjs.com/get-npm)
9+
- A local development installation of Magento Commerce 2.3.1 -- Use the installation instructions from the [DevDocs installation guide](https://devdocs.magento.com/guides/v2.3/install-gde/bk-install-guide.html).
10+
- Access to the private Page Builder repository
11+
- [npm package manager](https://www.npmjs.com/get-npm)
2012

2113
1. Clone the Page Builder repos into the root directory of your Magento Commerce 2.3+ installation:
2214

@@ -31,9 +23,9 @@ Before installing Page Builder, make sure you have:
3123
php dev/tools/build-ee.php --command=link --ee-source="magento2-page-builder" --ce-source="."
3224
php dev/tools/build-ee.php --command=link --ee-source="magento2-page-builder-ee" --ce-source="."
3325
```
34-
26+
3527
The results should look like this:
36-
28+
3729
![Symlinks to Page Builder](../images/symlinked-pagebuilder.png)
3830

3931
3. Enable the Page Builder module using the following command:
@@ -57,45 +49,3 @@ cd pagebuilder && npm install
5749
```
5850

5951
After installing the npm packages, you can run `npm run start`. This command watches for changes to your TypeScript files, compiles, and checks for errors.
60-
61-
## **EAP Participants Only**: Composer Installation {#composerInstallation}
62-
63-
To use the Composer installation described below, you must be an active member in the Page Builder EAP program and have submitted your MAGEID to get access to the Page Builder Composer packages through `repo.magento.com`.
64-
If you are experiencing problems _as an EAP member_, please contact us at `pagebuilderEAP@adobe.com`.
65-
66-
{: .bs-callout .bs-callout-info }
67-
If you already have Magento 2.3.0 or Page Builder installed, clear your composer cache (`composer clearcache`) before you install the latest packages.
68-
69-
1. Ensure your composer has `minimum-stability` set to `beta`:
70-
71-
```bash
72-
composer config minimum-stability beta
73-
```
74-
75-
2. Navigate to the root of the project and require the `magento/module-page-builder-commerce` package:
76-
77-
```bash
78-
composer require magento/page-builder-commerce:^1.0.0
79-
```
80-
81-
3. Enable the module within Magento:
82-
83-
``` bash
84-
bin/magento setup:upgrade
85-
```
86-
87-
4. Activate Page Builder from the Admin UI as described in [Activate Page Builder](../how-to/how-to-deactivate-pagebuilder.md).
88-
89-
### Updating Composer installation
90-
91-
You can install updates by completing a `composer update` within your project.
92-
93-
### Composer installation issues
94-
95-
If you run into the following issue:
96-
97-
```shell
98-
Could not find a matching version of package magento/page-builder-commerce. Check the package spelling, your version constraint and that the package is available in a stability which matches your minimum-stability (stable).
99-
```
100-
101-
Please ensure the credentials you're using to connect with `repo.magento.com` belong to the MAGEID you provided when you signed up to the EAP program.

0 commit comments

Comments
 (0)