-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathd2.config.js
More file actions
33 lines (32 loc) · 799 Bytes
/
d2.config.js
File metadata and controls
33 lines (32 loc) · 799 Bytes
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
/** @type {import('@dhis2/cli-app-scripts').D2Config} */
const config = {
id: '275afdce-16d2-40e1-8a9b-5b22d882ed74',
type: 'app',
name: 'import-export',
title: 'Import/Export',
description: 'Core app for importing and exporting data to and from DHIS2.',
coreApp: true,
minDHIS2Version: '2.41',
entryPoints: {
app: './src/App.jsx',
},
shortcuts: [
{
name: 'Data import',
url: '#/import/data',
},
{
name: 'Data export',
url: '#/export/data',
},
{
name: 'Metadata import',
url: '#/import/metadata',
},
{
name: 'Metadata export ',
url: '#/export/metadata',
},
],
}
module.exports = config