forked from zitadel/zitadel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.json
More file actions
43 lines (43 loc) · 1.36 KB
/
project.json
File metadata and controls
43 lines (43 loc) · 1.36 KB
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
{
"$schema": "./node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"targets": {
"db": {
"continuous": true,
"description": "Runs a local Postgres database for development",
"command": "nx run @zitadel/devcontainer:compose up db"
},
"clean": {
"description": "Cleans all local-only files relating to the Zitadel platform (API, Login and Management Console)",
"dependsOn": [
"@zitadel/api:clean",
"@zitadel/login:clean",
"@zitadel/console:clean",
"@zitadel/docs:clean"
]
},
"pack": {
"description": "Creates package archives for the API across all platforms and for the Login component, then generates a checksums.txt file containing the SHA256 checksums for all created archives.",
"dependsOn": [
"@zitadel/api:pack-linux-*",
"@zitadel/api:pack-darwin-*",
"@zitadel/api:pack-windows-*",
"@zitadel/login:pack"
],
"executor": "nx:run-commands",
"options": {
"parallel": false,
"commands": [
"sha256sum .artifacts/pack/zitadel-*.tar.gz > .artifacts/pack/checksums.txt"
]
},
"cache": true,
"inputs": [
"{workspaceRoot}/.artifacts/pack/zitadel-*.tar.gz"
],
"outputs": [
"{workspaceRoot}/.artifacts/pack/checksums.txt"
]
}
}
}