-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.block-surfer.example
More file actions
31 lines (31 loc) · 859 Bytes
/
Copy path.block-surfer.example
File metadata and controls
31 lines (31 loc) · 859 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
{
"project": "dlt-project-template",
"description": "Proyecto DLT Project Template",
"faviconPath": "dlt-project-template\\web-application\\frontend\\public\\favicon.ico",
"services": [
{
"name": "fdltBs",
"description": "Frontend DLT",
"path": "dlt-project-template\\web-application\\frontend",
"commands": [
"npm run serve"
]
},
{
"name": "bdltBs",
"description": "Backend DLT",
"path": "dlt-project-template\\web-application\\backend",
"commands": [
"npm run build",
"npm start"
]
}
],
"mainFunction": {
"name": "dltBs",
"description": "Inicia frontend y backend de dlt-project-template",
"services": ["fdltBs", "bdltBs"],
"trackingName": "dlt-project-template",
"trackingDescription": "Proyecto DLT Project Template"
}
}