Configures Python environment for project
Adds a `.env` file to define the `PYTHONPATH` variable, ensuring module resolution from the `src` directory. Configures VS Code settings to use the `.env` file and enhance Python analysis with extra paths. Improves development environment setup.
This commit is contained in:
6
.vscode/settings.json
vendored
Normal file
6
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"python.envFile": "${workspaceFolder}/.env",
|
||||
"python.analysis.extraPaths": [
|
||||
"src"
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user