- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 127 for env (0.16 seconds)
-
docs/en/docs/environment-variables.md
/// An environment variable (also known as "**env var**") is a variable that lives **outside** of the Python code, in the **operating system**, and could be read by your Python code (or by other programs as well). Environment variables could be useful for handling application **settings**, as part of the **installation** of Python, etc. ## Create and Use Env Vars { #create-and-use-env-vars }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 7.9K bytes - Click Count (0) -
.github/workflows/deploy-docs.yml
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} command: pages deploy ./site --project-name=${{ env.PROJECT_NAME }} --branch=${{ env.BRANCH }} - name: Deploy Docs Status Error if: failure() run: uv run ./scripts/deploy_docs_status.py env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} COMMIT_SHA: ${{ github.event.workflow_run.head_sha }}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Mar 03 00:12:02 GMT 2026 - 2.7K bytes - Click Count (0) -
.github/workflows/test.yml
starlette-src: starlette-git fail-fast: false runs-on: ${{ matrix.os }} env: UV_PYTHON: ${{ matrix.python-version }} UV_RESOLUTION: ${{ matrix.uv-resolution }} STARLETTE_SRC: ${{ matrix.starlette-src }} steps: - name: Dump GitHub context env: GITHUB_CONTEXT: ${{ toJson(github) }} run: echo "$GITHUB_CONTEXT" - uses: actions/checkout@v6Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Mar 23 12:36:49 GMT 2026 - 6.4K bytes - Click Count (0) -
docs/ko/docs/advanced/settings.md
/// tip | 팁 이를 사용하려면 `pip install python-dotenv`가 필요합니다. /// ### `.env` 파일 { #the-env-file } 다음과 같은 `.env` 파일을 둘 수 있습니다: ```bash ADMIN_EMAIL="******@****.***" APP_NAME="ChimichangApp" ``` ### `.env`에서 설정 읽기 { #read-settings-from-env }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 11.9K bytes - Click Count (0) -
docs/ja/docs/advanced/settings.md
/// Pydantic は外部ライブラリを使ってこの種のファイルからの読み込みをサポートしています。詳細は [Pydantic Settings: Dotenv (.env) support](https://docs.pydantic.dev/latest/concepts/pydantic_settings/#dotenv-env-support) を参照してください。 /// tip | 豆知識 これを機能させるには、`pip install python-dotenv` が必要です。 /// ### `.env` ファイル { #the-env-file } 次のような `.env` ファイルを用意できます: ```bash ADMIN_EMAIL="******@****.***" APP_NAME="ChimichangApp" ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 12.7K bytes - Click Count (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"Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 10.9K bytes - Click Count (0) -
.github/workflows/build-reusable.yml
env: GIT_CONFIG_PARAMETERS: "'checkout.workers=12' 'core.featureManyFiles=true'" with: ref: ${{ github.sha }} persist-credentials: false fetch-depth: 1 - name: Build and test env: TFCI: ${{ inputs.tfci }} TFCI_GITHUB_ACTIONS: trueCreated: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Mar 28 04:33:01 GMT 2026 - 2.2K bytes - Click Count (0) -
ci/devinfra/docker/windows2022/Dockerfile
ENV BAZEL_LLVM "C:\tools\LLVM" # These variables may be useful, but so far haven't been. Keeping for posterity. # ENV CLANG_COMPILER_PATH "C:\tools\llvm\bin\clang.exe" # ENV CC "C:\tools\llvm\bin\clang.exe" # ENV BAZEL_COMPILER "C:\tools\llvm\bin\clang.exe" ENV BAZEL_SH "C:\tools\msys64\usr\bin\bash.exe" ENV BAZEL_VS "C:\Program Files\Microsoft Visual Studio\2022\BuildTools"
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Wed Mar 04 19:50:57 GMT 2026 - 10.4K bytes - Click Count (0) -
docs/zh-hant/docs/advanced/settings.md
/// tip 要讓這個功能運作,你需要 `pip install python-dotenv`。 /// ### `.env` 檔 { #the-env-file } 你可以有一個 `.env` 檔如下: ```bash ADMIN_EMAIL="******@****.***" APP_NAME="ChimichangApp" ``` ### 從 `.env` 讀取設定 { #read-settings-from-env } 然後更新你的 `config.py`: {* ../../docs_src/settings/app03_an_py310/config.py hl[9] *} /// tipCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 10.3K bytes - Click Count (0) -
.github/workflows/translate.yml
with: limit-access-to-actor: true env: GITHUB_TOKEN: ${{ secrets.FASTAPI_TRANSLATIONS }} OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} - name: FastAPI Translate run: | uv run ./scripts/translate.py ${{ matrix.command }} uv run ./scripts/translate.py make-pr env: GITHUB_TOKEN: ${{ secrets.FASTAPI_TRANSLATIONS }}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Mar 18 15:36:56 GMT 2026 - 4K bytes - Click Count (0)