<!-- TITLE: Sales Page - Magento 2 module documentation--> <!-- SUBTITLE: Author: Paweł Wasiluk --> # Sales Page Module ## Module overview Create page, that automatically adds products with special prices. Now you do not have to create categories and manually move products, all is done with our module. ## Module compatibility This module is compatibile with Magento Community versions: **2.3**. ## How it works After Installing module you there is nothing to configure in admin panel. All content is stored under "yoursite/salespage" url. ![Image 2](/uploads/sales-page/i-1.png "Image 1") ## Installation ### Composer 1. Add repo to composer.json: ```text "repositories": [ ... { "type": "vcs", "url": "git@git.auroracreation.com:aurora-modules/SalesPage.git" } ... ], ``` 2. Add package to composer.json: ```text "require": { ... "aurora/salespage": "*" ... }, ``` 3. In Magento root folder run commands: ```text composer update aurora/salespage php bin/magento module:enable Aurora_SalesPage php bin/magento setup:upgrade ``` ### Manual 1. Unzip archive. 2. Upload extension files on your server to: ```text {Magento root} └── app/ └── code ``` 3. In Magento root folder run commands: ```text php bin/magento module:enable Aurora_SalesPage php bin/magento setup:upgrade ``` ### Thank you for your interest in our products!