alfred juggles with python environments and environment variables. To be able to ensure a minimum of support, it is important to have information on the environment in which alfred is executed.
The order of the keys must be preserved in the json. The indentation is 2 spaces.
[
{
"project_directory": "./",
"manifest": "./.alfred.toml",
"name": "name",
"description": "my description",
"subprojects": [
"./products/*"
],
"project": {
"command": [
"alfred/*.py"
],
"python_path_project_root": false,
"python_path_extends": [],
"venv": null,
"venv_dotvenv_ignore": true
},
"runtime": {
"executable": "",
"pythonpath": [],
"path": []
}
},
{
"project_directory": "./product/product1",
"manifest": "./product/product1/.alfred.toml",
"name": "name",
"description": "my description",
"subprojects": [
"./products/*"
],
"project": {
"command": [
"alfred/*.py"
],
"python_path_project_root": false,
"python_path_extends": [],
"venv": null,
"venv_dotvenv_ignore": true
},
"runtime": {
"executable": "",
"pythonpath": [],
"path": []
}
},
]
alfred juggles with python environments and environment variables. To be able to ensure a minimum of support, it is important to have information on the environment in which alfred is executed.
The order of the keys must be preserved in the json. The indentation is 2 spaces.
[ { "project_directory": "./", "manifest": "./.alfred.toml", "name": "name", "description": "my description", "subprojects": [ "./products/*" ], "project": { "command": [ "alfred/*.py" ], "python_path_project_root": false, "python_path_extends": [], "venv": null, "venv_dotvenv_ignore": true }, "runtime": { "executable": "", "pythonpath": [], "path": [] } }, { "project_directory": "./product/product1", "manifest": "./product/product1/.alfred.toml", "name": "name", "description": "my description", "subprojects": [ "./products/*" ], "project": { "command": [ "alfred/*.py" ], "python_path_project_root": false, "python_path_extends": [], "venv": null, "venv_dotvenv_ignore": true }, "runtime": { "executable": "", "pythonpath": [], "path": [] } }, ]