Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 70 of 348 for toml (0.03 seconds)

  1. docs/es/docs/advanced/behind-a-proxy.md

    Luego crea un archivo `traefik.toml` con:
    
    ```TOML hl_lines="3"
    [entryPoints]
      [entryPoints.http]
        address = ":9999"
    
    [providers]
      [providers.file]
        filename = "routes.toml"
    ```
    
    Esto le dice a Traefik que escuche en el puerto 9999 y que use otro archivo `routes.toml`.
    
    /// tip | Consejo
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 16.5K bytes
    - Click Count (0)
  2. build-logic/settings.gradle.kts

    dependencyResolutionManagement {
      repositories {
        mavenCentral()
        gradlePluginPortal()
        google()
      }
      versionCatalogs {
        create("libs") {
          from(files("../gradle/libs.versions.toml"))
        }
      }
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 434 bytes
    - Click Count (0)
  3. docs/tr/docs/tutorial/bigger-applications.md

    ///
    
    ## `pyproject.toml` İçinde `entrypoint` Yapılandırın { #configure-the-entrypoint-in-pyproject-toml }
    
    FastAPI `app` nesneniz `app/main.py` içinde yaşadığına göre, `pyproject.toml` dosyanızda `entrypoint`’i şöyle yapılandırabilirsiniz:
    
    ```toml
    [tool.fastapi]
    entrypoint = "app.main:app"
    ```
    
    bu da şu import’a denktir:
    
    ```python
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 20.3K bytes
    - Click Count (0)
  4. docs/ru/docs/tutorial/bigger-applications.md

    ///
    
    ## Настройка `entrypoint` в `pyproject.toml` { #configure-the-entrypoint-in-pyproject-toml }
    
    Так как ваш объект FastAPI `app` находится в `app/main.py`, вы можете настроить `entrypoint` в файле `pyproject.toml` следующим образом:
    
    ```toml
    [tool.fastapi]
    entrypoint = "app.main:app"
    ```
    
    это эквивалентно импорту:
    
    ```python
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 29.7K bytes
    - Click Count (0)
  5. .github/workflows/topic-repos.yml

              python-version-file: ".python-version"
          - name: Setup uv
            uses: astral-sh/setup-uv@v7
            with:
              enable-cache: true
              cache-dependency-glob: |
                pyproject.toml
                uv.lock
          - name: Install GitHub Actions dependencies
            run: uv sync --locked --no-dev --group github-actions
          - name: Update Topic Repos
            run: uv run ./scripts/topic_repos.py
            env:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 22:02:57 GMT 2026
    - 969 bytes
    - Click Count (0)
  6. .github/workflows/label-approved.yml

          with:
            python-version-file: ".python-version"
        - name: Setup uv
          uses: astral-sh/setup-uv@v7
          with:
            enable-cache: true
            cache-dependency-glob: |
                pyproject.toml
                uv.lock
        - name: Install GitHub Actions dependencies
          run: uv sync --locked --no-dev --group github-actions
        - name: Label Approved
          run: uv run ./scripts/label_approved.py
          env:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 22:02:57 GMT 2026
    - 1.1K bytes
    - Click Count (0)
  7. docs/de/docs/tutorial/bigger-applications.md

    ///
    
    ## Den `entrypoint` in `pyproject.toml` konfigurieren { #configure-the-entrypoint-in-pyproject-toml }
    
    Da Ihr FastAPI-`app`-Objekt in `app/main.py` liegt, können Sie den `entrypoint` in Ihrer `pyproject.toml`-Datei so konfigurieren:
    
    ```toml
    [tool.fastapi]
    entrypoint = "app.main:app"
    ```
    
    das entspricht einem Import wie:
    
    ```python
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 21.9K bytes
    - Click Count (0)
  8. docs/uk/docs/tutorial/bigger-applications.md

    ///
    
    ## Налаштуйте `entrypoint` у `pyproject.toml` { #configure-the-entrypoint-in-pyproject-toml }
    
    Оскільки ваш об'єкт FastAPI `app` знаходиться в `app/main.py`, ви можете налаштувати `entrypoint` у файлі `pyproject.toml` так:
    
    ```toml
    [tool.fastapi]
    entrypoint = "app.main:app"
    ```
    
    це еквівалентно імпорту:
    
    ```python
    from app.main import app
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 27.4K bytes
    - Click Count (0)
  9. go.sum

    github.com/AzureAD/microsoft-authentication-library-for-go v1.4.2/go.mod h1:wP83P5OoQ5p6ip3ScPr0BAq0BvuPAvacpEuSzyouqAI=
    github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
    github.com/DataDog/datadog-go v2.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ=
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 79.8K bytes
    - Click Count (0)
  10. docs/fr/docs/tutorial/bigger-applications.md

    ///
    
    ## Configurer l'`entrypoint` dans `pyproject.toml` { #configure-the-entrypoint-in-pyproject-toml }
    
    Comme votre objet FastAPI `app` vit dans `app/main.py`, vous pouvez configurer l'`entrypoint` dans votre fichier `pyproject.toml` comme ceci :
    
    ```toml
    [tool.fastapi]
    entrypoint = "app.main:app"
    ```
    
    ce qui équivaut à importer ainsi :
    
    ```python
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 21.4K bytes
    - Click Count (0)
Back to Top