generated from bevenio/docker-react-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.genrc
51 lines (51 loc) · 1.3 KB
/
.genrc
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
{
"sources": [
{
"id": "project",
"from": "./project.json"
},
{
"id": "package",
"from": "./package.json"
}
],
"replacements": [
{
"from": "./.templates/project/template.project.json",
"to": "./project.json",
"generateOnce": true
},
{
"from": "./.templates/license/template.LICENSE",
"to": "./LICENSE"
},
{
"from": "./.templates/docker/template.docker-compose.commands.yml",
"to": "./.docker/docker-compose.commands.yml"
},
{
"from": "./.templates/docker/template.docker-compose.development.yml",
"to": "./.docker/docker-compose.development.yml"
},
{
"from": "./.templates/docker/template.docker-compose.production.yml",
"to": "./.docker/docker-compose.production.yml"
},
{
"from": "./.templates/docker/template.dockerfile.deployment",
"to": "./.docker/dockerfile.deployment"
},
{
"from": "./.templates/github/template.nodejs_build.yml",
"to": "./.github/workflows/nodejs_build.yml"
},
{
"from": "./.templates/github/template.nodejs_lint.yml",
"to": "./.github/workflows/nodejs_lint.yml"
},
{
"from": "./.templates/github/template.nodejs_test.yml",
"to": "./.github/workflows/nodejs_test.yml"
}
]
}