Merge pull request #435 from letta-ai/add-helpful-commands-to-start
add: helpful commands to justfile
This commit is contained in:
75
project.json
Normal file
75
project.json
Normal file
@@ -0,0 +1,75 @@
|
||||
{
|
||||
"name": "core",
|
||||
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
||||
"projectType": "application",
|
||||
"sourceRoot": "apps/core",
|
||||
"targets": {
|
||||
"lock": {
|
||||
"executor": "@nxlv/python:run-commands",
|
||||
"options": {
|
||||
"command": "poetry lock --no-update",
|
||||
"cwd": "apps/core"
|
||||
}
|
||||
},
|
||||
"add": {
|
||||
"executor": "@nxlv/python:add",
|
||||
"options": {}
|
||||
},
|
||||
"update": {
|
||||
"executor": "@nxlv/python:update",
|
||||
"options": {}
|
||||
},
|
||||
"remove": {
|
||||
"executor": "@nxlv/python:remove",
|
||||
"options": {}
|
||||
},
|
||||
"dev": {
|
||||
"executor": "@nxlv/python:run-commands",
|
||||
"options": {
|
||||
"command": "poetry run letta server",
|
||||
"cwd": "apps/core"
|
||||
}
|
||||
},
|
||||
"build": {
|
||||
"executor": "@nxlv/python:build",
|
||||
"outputs": ["{projectRoot}/dist"],
|
||||
"options": {
|
||||
"outputPath": "apps/core/dist",
|
||||
"publish": false,
|
||||
"lockedVersions": true,
|
||||
"bundleLocalDependencies": true
|
||||
}
|
||||
},
|
||||
"install": {
|
||||
"executor": "@nxlv/python:run-commands",
|
||||
"options": {
|
||||
"command": "poetry install --all-extras",
|
||||
"cwd": "apps/core"
|
||||
}
|
||||
},
|
||||
"database:migrate": {
|
||||
"executor": "@nxlv/python:run-commands",
|
||||
"options": {
|
||||
"command": "poetry run alembic upgrade head",
|
||||
"cwd": "apps/core"
|
||||
}
|
||||
},
|
||||
"test": {
|
||||
"executor": "@nxlv/python:run-commands",
|
||||
"outputs": [
|
||||
"{workspaceRoot}/reports/apps/core/unittests",
|
||||
"{workspaceRoot}/coverage/apps/core"
|
||||
],
|
||||
"options": {
|
||||
"command": "poetry run pytest tests/",
|
||||
"cwd": "apps/core"
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": [],
|
||||
"release": {
|
||||
"version": {
|
||||
"generator": "@nxlv/python:release-version"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user