vscode:: python-dotenv 파일 설정하기

 

 

실행시 `.env` 파일을 기본적으로 읽어보게끔 하는 설정

pip install python-dotenv는 설치된 상태여야 함

#방법1
"python": "set PYTHONIOENCODING=utf8 && cd $dir && python -c \"from dotenv import load_dotenv; load_dotenv()\" && $pythonPath -u $fullFileName"


#방법2
"python": "set PYTHONIOENCODING=utf8 && cd $dir && set PYTHONDOTENV=.env && $pythonPath -u $fullFileName",

 

 

 

 

 

 

 

https://code.visualstudio.com/docs/python/settings-reference#_general-python-settings

vscode global setting에 이미 설정되어 있어서 별도 설정은 불필요.

하지만 coderunner는 별도의 설정이 필요함

 

 

 

 

_

반응형