- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for Dotenv (0.04 sec)
-
docs/ru/docs/advanced/settings.md
/// tip | Совет Чтобы это работало, вам нужно `pip install python-dotenv`. /// ### Файл `.env` { #the-env-file } У вас может быть файл `.env` со следующим содержимым: ```bash ADMIN_EMAIL="******@****.***"Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 18.3K bytes - Viewed (0) -
docs/de/docs/advanced/settings.md
/// tip | Tipp Damit das funktioniert, müssen Sie `pip install python-dotenv` ausführen. /// ### Die `.env`-Datei { #the-env-file } Sie könnten eine `.env`-Datei haben, mit: ```bashRegistered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 24 10:28:19 UTC 2025 - 13.1K bytes - Viewed (0) -
docs/es/docs/advanced/settings.md
/// tip | Consejo Para que esto funcione, necesitas `pip install python-dotenv`. /// ### El archivo `.env` { #the-env-file } Podrías tener un archivo `.env` con: ```bash ADMIN_EMAIL="******@****.***"Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 13.2K bytes - Viewed (0) -
docs/en/docs/advanced/settings.md
/// tip For this to work, you need to `pip install python-dotenv`. /// ### The `.env` file { #the-env-file } You could have a `.env` file with: ```bash ADMIN_EMAIL="******@****.***" APP_NAME="ChimichangApp" ```Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 20 15:55:38 UTC 2025 - 11.2K bytes - Viewed (0) -
docs/pt/docs/advanced/settings.md
/// tip | Dica Para isso funcionar, você precisa executar `pip install python-dotenv`. /// ### O arquivo `.env` { #the-env-file } Você poderia ter um arquivo `.env` com: ```bash ADMIN_EMAIL="******@****.***"Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 13K bytes - Viewed (0) -
docs/zh/docs/advanced/settings.md
这种做法相当常见,有一个名称,这些环境变量通常放在一个名为 `.env` 的文件中,该文件被称为“dotenv”。 /// tip 以点 (`.`) 开头的文件是 Unix-like 系统(如 Linux 和 macOS)中的隐藏文件。 但是,dotenv 文件实际上不一定要具有确切的文件名。 /// Pydantic 支持使用外部库从这些类型的文件中读取。您可以在<a href="https://docs.pydantic.dev/latest/concepts/pydantic_settings/#dotenv-env-support" class="external-link" target="_blank">Pydantic 设置: Dotenv (.env) 支持</a>中阅读更多相关信息。 /// tip
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 12.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/storage/Handler.java
return; } final String endpoint = System.getenv().get("STORAGE_ENDPOINT"); final String accessKey = System.getenv().get("STORAGE_ACCESS_KEY"); final String secretKey = System.getenv().get("STORAGE_SECRET_KEY"); final String region = System.getenv().get("STORAGE_REGION"); // Validate endpoint before attempting connectionRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:52:56 UTC 2025 - 11.1K bytes - Viewed (0) -
docs/ru/docs/environment-variables.md
Например, у вас есть файл `main.py`: ```Python hl_lines="3" import os name = os.getenv("MY_NAME", "World") print(f"Hello {name} from Python") ``` /// tip | Совет Второй аргумент <a href="https://docs.python.org/3.8/library/os.html#os.getenv" class="external-link" target="_blank">`os.getenv()`</a> - это возвращаемое по умолчанию значение.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Sep 30 11:24:39 UTC 2025 - 12.7K bytes - Viewed (0) -
maven-tests/mvnw
public class Downloader extends java.net.Authenticator { protected java.net.PasswordAuthentication getPasswordAuthentication() { return new java.net.PasswordAuthentication( System.getenv( "MVNW_USERNAME" ), System.getenv( "MVNW_PASSWORD" ).toCharArray() ); } public static void main( String[] args ) throws Exception { setDefault( new Downloader() );Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Thu Sep 25 18:22:49 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ResourceUtil.java
* * @return the application type string, or empty string if not set */ public static String getAppType() { final String appType = System.getenv(FESS_APP_TYPE); if (StringUtil.isNotBlank(appType)) { return appType; } return StringUtil.EMPTY; } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.1K bytes - Viewed (0)