mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 15:37:33 +00:00
39 lines
918 B
JSON
39 lines
918 B
JSON
{
|
|
"name": "@zitadel/api",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "apps/api",
|
|
"projectType": "application",
|
|
"release": {
|
|
"docker": {
|
|
"repositoryName": "zitadel/api"
|
|
}
|
|
},
|
|
"targets": {
|
|
"build": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "make compile",
|
|
"cwd": "{projectRoot}"
|
|
},
|
|
"outputs": [
|
|
"{projectRoot}/zitadel"
|
|
],
|
|
"dependsOn": [
|
|
"@zitadel/console:build"
|
|
]
|
|
},
|
|
"docker:build": {
|
|
"dependsOn": [
|
|
"build"
|
|
]
|
|
},
|
|
"docker:run": {
|
|
"options": {
|
|
"args": [
|
|
"-p",
|
|
"3000:3000"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
} |