mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 05:17:33 +00:00
41 lines
952 B
JSON
41 lines
952 B
JSON
{
|
|
"name": "@zitadel/api",
|
|
"$schema": "node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": ".",
|
|
"projectType": "application",
|
|
"release": {
|
|
"docker": {
|
|
"repositoryName": "zitadel/api"
|
|
}
|
|
},
|
|
"targets": {
|
|
"build": {
|
|
"command": "make compile",
|
|
"options": {
|
|
"command": "make compile"
|
|
},
|
|
"outputs": [
|
|
"{workspaceRoot}/apps/api/zitadel"
|
|
],
|
|
"dependsOn": [
|
|
"@zitadel/console:build"
|
|
]
|
|
},
|
|
"docker:build": {
|
|
"dependsOn": [
|
|
"build"
|
|
],
|
|
"images": [
|
|
"zitadel/zitadel:latest"
|
|
]
|
|
},
|
|
"docker:run": {
|
|
"options": {
|
|
"args": [
|
|
"-p",
|
|
"3000:3000"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
} |