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.
6 lines
108 B
JSON
6 lines
108 B
JSON
{
|
|
"python.envFile": "${workspaceFolder}/.env",
|
|
"python.analysis.extraPaths": [
|
|
"src"
|
|
]
|
|
} |