mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-13 09:37:34 +00:00
wip
This commit is contained in:
41
apps/api/project.json
Normal file
41
apps/api/project.json
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user