create-mercato-app 0.6.4-develop.4217.1.c9aa050183 → 0.6.4-develop.4236.1.9fa6806b34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -32,6 +32,7 @@ services:
|
|
|
32
32
|
TENANT_DATA_ENCRYPTION_DEBUG: ${TENANT_DATA_ENCRYPTION_DEBUG:-false}
|
|
33
33
|
TENANT_DATA_ENCRYPTION_FALLBACK_KEY: ${TENANT_DATA_ENCRYPTION_FALLBACK_KEY:-dev-tenant-encryption-fallback-key-32chars}
|
|
34
34
|
NODE_ENV: development
|
|
35
|
+
NODE_OPTIONS: ${NODE_OPTIONS:---max-old-space-size=3072}
|
|
35
36
|
DEPLOY_ENV: ${DEPLOY_ENV:-local}
|
|
36
37
|
PORT: 3000
|
|
37
38
|
DATABASE_URL: postgres://${POSTGRES_USER:-postgres}:${POSTGRES_PASSWORD:-postgres}@postgres:5432/${POSTGRES_DB:-open-mercato}
|
|
@@ -2,11 +2,36 @@ export const features = [
|
|
|
2
2
|
{ id: 'example.backend', title: 'Access example backend', module: 'example' },
|
|
3
3
|
{ id: 'example.view', title: 'View example enrichments', module: 'example' },
|
|
4
4
|
{ id: 'example.todos.view', title: 'View todos', module: 'example' },
|
|
5
|
-
{
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
5
|
+
{
|
|
6
|
+
id: 'example.todos.manage',
|
|
7
|
+
title: 'Manage todos',
|
|
8
|
+
module: 'example',
|
|
9
|
+
dependsOn: ['example.todos.view'],
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
id: 'example.widgets.injection',
|
|
13
|
+
title: 'Use injection widgets',
|
|
14
|
+
module: 'example',
|
|
15
|
+
dependsOn: ['example.view'],
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
id: 'example.widgets.todo',
|
|
19
|
+
title: 'Use dashboard todo widget',
|
|
20
|
+
module: 'example',
|
|
21
|
+
dependsOn: ['example.todos.view'],
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
id: 'example.widgets.welcome',
|
|
25
|
+
title: 'Use dashboard welcome widget',
|
|
26
|
+
module: 'example',
|
|
27
|
+
dependsOn: ['example.view'],
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
id: 'example.widgets.notes',
|
|
31
|
+
title: 'Use dashboard notes widget',
|
|
32
|
+
module: 'example',
|
|
33
|
+
dependsOn: ['example.view'],
|
|
34
|
+
},
|
|
10
35
|
]
|
|
11
36
|
|
|
12
37
|
export default features
|
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
export const features = [
|
|
2
|
-
{
|
|
3
|
-
|
|
2
|
+
{
|
|
3
|
+
id: 'example_customers_sync.view',
|
|
4
|
+
title: 'View Example customer sync diagnostics',
|
|
5
|
+
module: 'example_customers_sync',
|
|
6
|
+
dependsOn: ['customers.people.view'],
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
id: 'example_customers_sync.manage',
|
|
10
|
+
title: 'Manage Example customer sync',
|
|
11
|
+
module: 'example_customers_sync',
|
|
12
|
+
dependsOn: ['example_customers_sync.view'],
|
|
13
|
+
},
|
|
4
14
|
]
|
|
5
15
|
|
|
6
16
|
export default features
|