-
Notifications
You must be signed in to change notification settings - Fork 1
/
middleware.config.js
30 lines (30 loc) · 977 Bytes
/
middleware.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
module.exports = {
integrations: {
ct: {
location: '@vue-storefront/commercetools-api/server',
configuration: {
api: {
uri: 'https://api.commercetools.com/vsf-ct-dev/graphql',
authHost: 'https://auth.sphere.io',
projectKey: 'vsf-ct-dev',
clientId: 'RT4iJGDbDzZe4b2E6RyeNe9s',
clientSecret: '5eBt3yfZJWw1j7V6kXjfKXpuFP-YQXpg',
scopes: [
'manage_products:vsf-ct-dev',
'create_anonymous_token:vsf-ct-dev',
'manage_my_profile:vsf-ct-dev',
'manage_customer_groups:vsf-ct-dev',
'view_categories:vsf-ct-dev',
'introspect_oauth_tokens:vsf-ct-dev',
'manage_my_payments:vsf-ct-dev',
'manage_my_orders:vsf-ct-dev',
'manage_my_shopping_lists:vsf-ct-dev',
'view_published_products:vsf-ct-dev'
]
},
currency: 'USD',
country: 'US'
}
}
}
};