/dc-demostore-core

Primary LanguageTypeScriptApache License 2.0Apache-2.0

Amplience Dynamic Content

Amplience Demo Store Core Package

dc-demostore-core is a React/Material/NextJS front-end e-Commerce application, implemented with Typescript, showcasing Amplience Dynamic Media and Dynamic Content.

It uses GraphQL as an integration layer for e-Commerce. What does this mean exactly? it means that

The package includes a Debug/X-Ray panel to aid in tracing and analysing requests and payloads, to and from Amplience Content Delivery v2 & Filter API's.

It also includes Storybook, a visual documentation of the UI components, things like Product Lists, Banners, Blogs & Blog posts, Stores, etc.

dc-demostore-core is intended for DEMO PURPOSES ONLY, and not for production-optimized environments.

Table of Contents

Getting Started

General Use (w/o Amplience account)

Out of the box, dc-demostore-core may be used without needing to have an Amplience account, allowing you to experiment with API calls and Front-End customisations against an existing content base. You can simply clone this repository and it already points to a working account so that you can see:

  • Live Content
  • Components
  • Amplience API requests
  • etc.

The following commands will install dc-demostore-core on your local machine.

$ gh repo clone amplience/dc-demostore-core
$ cd dc-demostore-core
$ yarn install

To run a Development environment:

$ yarn dev

To run a production environment:

$ yarn build
$ yarn start

Both dev and prod commands will also start a localhost. Then go to http://localhost:3000

Amplience Demo Store homepage

Storybook

Firing up Storybook is super simple:

$ yarn storybook

Then go to http://localhost:6006. More details may be found in our Storybook README

Storybook documentation

Provisioning your own Amplience Environment

The main tool for using your own Amplience environment with dc-demostore-core is dc-demostore-cli. The CLI tool allows you to quickly import a pre-configured set of Content Schemas, Content Types, Images, etc. to your Amp Env. Basically, everything you'd see running dc-demostore-core OOTB against our 'core public' Amplience Environment.

At a high level the basic steps are:

  1. Request an Amplience Media and Dynamic Account (if you don't already have one)
  2. Deploy a fork of dc-demostore-core (we'll cover deploying on Vercel)
  3. Configure & use dc-demostore-cli to populate content
  4. Point dc-demostore-core to your Dynamic Content Hub and run

Requesting an Amplience Environment

If you already have a Dynamic Content and Dynamic Media instance, you can skip to the next step.

TODO: details or links in here for requesting a SB

Fork & Deploy dc-demostore-core

Go HERE for some basic instructions on Forking and deploying core.

Configure & Use dc-demostore-cli

Please refer directly to the this README on how to Install/Configure/Use the CLI tool

Change dc-demostore-core Config / Point to your account

  • Create a .env.local file on the root of your project

Default setting:

NEXT_PUBLIC_DEMOSTORE_CONFIG_LOCATOR=amprsaprod:default

Your setting with your Hub Name {hubname}

NEXT_PUBLIC_DEMOSTORE_CONFIG_LOCATOR={hubname}:default

If you are using services like Vercel, you can configure the environment variable in the settings, and re-deploy your application.

top

Additional Topics