fix strange error where env variables are not read but somehow cashed. fixed by renaming the .env variable.
addind auto-detect of tts language
This commit is contained in:
28
.vscode/tasks.json
vendored
28
.vscode/tasks.json
vendored
@ -86,17 +86,19 @@
|
||||
"panel": "new"
|
||||
},
|
||||
},
|
||||
{
|
||||
"label": "conda-activate",
|
||||
"type": "shell",
|
||||
"command": "source ~/miniconda3/etc/profile.d/conda.sh && conda activate py && echo 'Activated Conda Environment (py)!'",
|
||||
"problemMatcher": [],
|
||||
"options": {
|
||||
"shell": {
|
||||
"executable": "/bin/bash",
|
||||
"args": ["-c"]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
{
|
||||
"label": "conda-activate",
|
||||
"type": "shell",
|
||||
"command": "source ~/miniconda3/etc/profile.d/conda.sh && conda activate ${input:condaEnv} && echo 'Activated Conda Environment (${input:condaEnv})!'",
|
||||
"problemMatcher": [],
|
||||
}
|
||||
],
|
||||
"inputs": [
|
||||
{
|
||||
"id": "condaEnv",
|
||||
"type": "promptString",
|
||||
"description": "Enter the Conda environment name",
|
||||
"default": "py"
|
||||
}
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user