df_align / .vscode /launch.json
Fer-geo's picture
fix
867194d
raw
history blame contribute delete
524 Bytes
{
"version": "0.2.0",
"configurations": [{
"name": "Python: Streamlit",
"type": "python",
"request": "launch",
"module": "streamlit",
"env": {
"STREAMLIT_APP": "app.py",
"STREAMLIT_ENV": "development",
"AWS_PROFILE": "root",
"PYTHONPATH": "${workspaceRoot}/src",
},
"args": [
"run",
"D:/Terradot/huggingface/df_align/app.py"
],
"jinja": true
}
]
}