mirror of
https://github.com/velocitatem/PHANTOM.git
synced 2026-05-31 08:33:36 +00:00
47 lines
886 B
JSON
47 lines
886 B
JSON
{
|
|
"$schema": "../node_modules/nx/schemas/project-schema.json",
|
|
"name": "research",
|
|
"projectType": "application",
|
|
"sourceRoot": "engine",
|
|
"targets": {
|
|
"install": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "make install",
|
|
"cwd": "."
|
|
}
|
|
},
|
|
"test": {
|
|
"executor": "nx:run-commands",
|
|
"dependsOn": [
|
|
"install"
|
|
],
|
|
"options": {
|
|
"command": "make test.backend",
|
|
"cwd": "."
|
|
}
|
|
},
|
|
"train": {
|
|
"executor": "nx:run-commands",
|
|
"dependsOn": [
|
|
"install"
|
|
],
|
|
"options": {
|
|
"command": "make train",
|
|
"cwd": "."
|
|
}
|
|
},
|
|
"stats": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "make stats.lines",
|
|
"cwd": "."
|
|
}
|
|
}
|
|
},
|
|
"tags": [
|
|
"scope:research",
|
|
"type:python"
|
|
]
|
|
}
|