You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

661 B

環境變數

環境變數(也稱為 env var)是存在於 Python 程式碼之外、作業系統中的值,可以被你的應用程式和其他程式讀取。

FastAPI 應用程式通常使用環境變數進行設定,例如資料庫 URL、電子郵件憑證和秘密金鑰。

你將在設定與環境變數中學習如何將它們用於應用程式設定。

了解更多

閱讀環境變數指南以取得詳細的跨平台說明,包括如何建立和讀取環境變數,以及 PATH 環境變數的運作方式。