Skip to content

awesto/commercetools-sunrise-data

 
 

Repository files navigation

Sunrise Data

Build Status

How to create a project with Sunrise Data

Before starting the import, make sure you have access to the Merchant Center. You will also need to run the application in this repository. Check that you meet the requirements and clone this repository to your computer.

1. Create your project

Open the Merchant Center and create an empty project (without sample data).

2. Prepare node environemnt for Import

Go to the root of this project, where the package.json is located and install all node dependencies:

npm install

3. Set your commercetools project credentials

  1. In the root of the project create a file named .env

  2. Set the .env file with your credentials:

      CTP_PROJECT_KEY = <your project key>
      CTP_CLIENT_ID = <your client ID>
      CTP_CLIENT_SECRET = <your client secret>
      CTP_API_URL = <your apiUrl> (i.e., api.commercetools.com)
      CTP_AUTH_URL = <your authUrl> (i.e., auth.commercetools.com)

    Url variables expect only the host name, not a full URL!

4. Usage

  1. Clean all existing project data and import new:

        npm run start
    
  2. Clean project data:

        npm run clean:data
    
  3. Import project data:

        npm run import:data
    
  4. Clean or import certain data (e.g. categories, products, customers, etc.)

        npm run clean:categories
    

    or

        npm run import:products
    

Requirements

About

The data (product types, categories, products) for Sunrise

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 98.4%
  • Shell 1.6%