forked from commercetools/commercetools-sunrise-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
67 lines (61 loc) · 3.41 KB
/
app.json
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "Sunrise Java",
"description": "Create your own webshop in minutes with commercetools and our template 'Sunrise' for Java",
"repository": "https://github.com/commercetools/commercetools-sunrise-java",
"logo": "http://www.commercetools.com/assets/img/ct_logo_farbe.gif",
"keywords": ["commercetools", "ecommerce", "shopping"],
"env": {
"CTP_PROJECT_KEY": {
"description": "The project key for your commercetools platform project."
},
"CTP_CLIENT_ID": {
"description": "The client ID of your commercetools platform project."
},
"CTP_CLIENT_SECRET": {
"description": "The client secret of your commercetools platform project."
},
"DISPLAYED_ATTRIBUTES": {
"description": "Product attributes that are displayed for a specific product variant (this does not allow to select different product variants, please check soft/hard selectable attributes for that purpose). Enter the attribute names separated by commas.",
"value": "colorFreeDefinition, designer",
"required": false
},
"HARD_SELECTABLE_ATTRIBUTES": {
"description": "List here those product attributes that enable selecting a different product variant. In particular, those attributes that require re-loading the page to display the selected variant, e.g. if you select a different color you may want to show different pictures, description, etc. Enter the attribute names separated by commas.",
"value": "color",
"required" : false
},
"SOFT_SELECTABLE_ATTRIBUTES": {
"description": "List here those product attributes that enable selecting a different product variant. In particular, those attributes that DO NOT require re-loading the page to display the selected variant, e.g. size. Enter the attribute names separated by commas.",
"value": "size",
"required" : false
},
"SALES_CATEGORY": {
"description": "The sales category in your project. Enter the category external ID.",
"value": "6",
"required": false
},
"NEW_CATEGORY": {
"description": "The category containing the new products in your project. Enter the category external ID.",
"value": "1",
"required": false
},
"HOME_SUGGESTIONS_CATEGORIES": {
"description": "The categories to which the products shown in the home page suggestions belong. Enter the category external IDs separated by commas.",
"value": "29, 37, 22, 28",
"required": false
},
"BASIC_AUTH_CREDENTIALS": {
"description": "OPTIONAL! LEAVE EMPTY IF YOU DO NOT WANT TO ENABLE BASIC AUTHENTICATION. If you only want authorized users to access your website, please enter here the required credentials separated by colon ':'. For example, for a username 'john' and password 'secret', enter 'john:secret'",
"required": false
},
"BASIC_AUTH_REALM": {
"description": "Authentication realm that identifies your application. This is only necessary when basic authentication is enabled.",
"value": "Sunrise Demo",
"required": false
},
"APPLICATION_SECRET": {
"description": "The secret key is used to secure cryptographics functions. Anyone that can get access to the application secret will be able to generate any session they please, effectively allowing them to log in to your system as any user they please. If you deploy your application to several instances be sure to use the same key.",
"generator": "secret"
}
}
}