Storefront Reference Architecture (SFRA)
This is a repository for the Storefront Reference Architecture reference application.
Storefront Reference Architecture has a base cartridge (app_storefront_base
) provided by Commerce Cloud that is never directly customized or edited. Instead, customization cartridges are layered on top of the base cartridge. This change is intended to allow for easier adoption of new features and bug fixes.
Storefront Reference Architecture supplies an plugin_applepay plugin cartridge to demonstrate how to layer customizations for the reference application.
Your feedback on the ease-of-use and limitations of this new architecture is invaluable during the developer preview. Particularly, feedback on any issues you encounter or workarounds you develop for efficiently customizing the base cartridge without editing it directly.
The latest version
The latest version of SFRA is 6.0.0
Getting Started
-
Clone this repository.
-
Run
npm install
to install all of the local dependencies (SFRA has been tested with v12.21.0 and is recommended) -
Run
npm run compile:js
from the command line that would compile all client-side JS files. Runnpm run compile:scss
andnpm run compile:fonts
that would do the same for css and fonts. -
Create
dw.json
file in the root of the project:
{
"hostname": "your-sandbox-hostname.demandware.net",
"username": "yourlogin",
"password": "yourpwd",
"code-version": "version_to_upload_to"
}
-
Run
npm run uploadCartridge
. It will uploadapp_storefront_base
,modules
andbm_app_storefront_base
cartridges to the sandbox you specified indw.json
file. -
Use https://github.com/SalesforceCommerceCloud/storefrontdata to zip and import site data on your sandbox.
-
Add the
app_storefront_base
cartridge to your cartridge path in Administration > Sites > Manage Sites > RefArch - Settings (Note: This should already be populated by the sample data in Step 6). -
You should now be ready to navigate to and use your site.
NPM scripts
Use the provided NPM scripts to compile and upload changes to your Sandbox.
Compiling your application
-
npm run compile:scss
- Compiles all .scss files into CSS. -
npm run compile:js
- Compiles all .js files and aggregates them. -
npm run compile:fonts
- Copies all needed font files. Usually, this only has to be run once.
If you are having an issue compiling scss files, try running 'npm rebuild node-sass' from within your local repo.
Linting your code
npm run lint
- Execute linting for all JavaScript and SCSS files in the project. You should run this command before committing your code.
Watching for changes and uploading
npm run watch
- Watches everything and recompiles (if necessary) and uploads to the sandbox. Requires a valid dw.json
file at the root that is configured for the sandbox to upload.
Uploading
npm run uploadCartridge
- Will upload app_storefront_base
, modules
and bm_app_storefront_base
to the server. Requires a valid dw.json
file at the root that is configured for the sandbox to upload.
npm run upload <filepath>
- Will upload a given file to the server. Requires a valid dw.json
file.
Testing
Running unit tests
You can run npm test
to execute all unit tests in the project. Run npm run cover
to get coverage information. Coverage will be available in coverage
folder under root directory.
- UNIT test code coverage:
- Open a terminal and navigate to the root directory of the mfsg repository.
- Enter the command:
npm run cover
. - Examine the report that is generated. For example:
Writing coverage reports at [/Users/yourusername/SCC/sfra/coverage]
- Navigate to this directory on your local machine, open up the index.html file. This file contains a detailed report.
Running integration tests
Integration tests are located in the storefront-reference-architecture/test/integration
directory.
To run integration tests you can use the following command:
npm run test:integration
Note: Please note that short form of this command will try to locate URL of your sandbox by reading dw.json
file in the root directory of your project. If you don't have dw.json
file, integration tests will fail.
sample dw.json
file (this file needs to be in the root of your project)
{
"hostname": "devxx-sitegenesis-dw.demandware.net"
}
You can also supply URL of the sandbox on the command line:
npm run test:integration -- --baseUrl devxx-sitegenesis-dw.demandware.net
Contributing to SFRA
#Page Designer Components for Storefront Reference Architecture See: Page Designer Components