/* * This file contains constants which are shared between more than one sub-module * e.g. values required by both the server and admin-ui. */ export const API_PORT = 3000; export const API_PATH = 'api'; export const DEFAULT_CHANNEL_CODE = '__default_channel__'; export const SUPER_ADMIN_ROLE_CODE = '__super_admin_role__'; export const SUPER_ADMIN_ROLE_DESCRIPTION = 'SuperAdmin'; export const SUPER_ADMIN_USER_IDENTIFIER = 'superadmin'; export const SUPER_ADMIN_USER_PASSWORD = 'superadmin'; export const CUSTOMER_ROLE_CODE = '__customer_role__'; export const CUSTOMER_ROLE_DESCRIPTION = 'Customer'; export const ROOT_CATEGORY_NAME = '__root_category__';