Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 211 - 220 of 1,269 for Tool (0.08 seconds)

  1. src/main/webapp/css/admin/adminlte.min.css.map

    #dee2e6;\n}\n\n.card-primary.card-outline-tabs > .card-header a.active,\n.card-primary.card-outline-tabs > .card-header a.active:hover {\n  border-top: 3px solid #007bff;\n}\n\n.bg-primary > .card-header .btn-tool,\n.bg-gradient-primary > .card-header .btn-tool,\n.card-primary:not(.card-outline) > .card-header .btn-tool {\n  color: rgba(255, 255, 255, 0.8);\n}\n\n.bg-primary > .card-header .btn-tool:hover,\n.bg-gradient-primary > .card-header .btn-tool:hover,\n.card-primary:not(.card-outline) > .card-header .btn-tool:hover...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 3.7M bytes
    - Click Count (3)
  2. docs/de/docs/tutorial/security/first-steps.md

    Es spielt keine Rolle, was Sie in das Formular eingeben, es wird noch nicht funktionieren. Wir kommen dahin.
    
    ///
    
    Dies ist natürlich nicht das Frontend für die Endbenutzer, aber es ist ein großartiges automatisches Tool, um Ihre gesamte API interaktiv zu dokumentieren.
    
    Es kann vom Frontend-Team verwendet werden (das auch Sie selbst sein können).
    
    Es kann von Anwendungen und Systemen Dritter verwendet werden.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 9.7K bytes
    - Click Count (0)
  3. docs/ja/docs/tutorial/first-steps.md

    `pyproject.toml`でアプリの場所を次のように設定できます:
    
    ```toml
    [tool.fastapi]
    entrypoint = "main:app"
    ```
    
    この`entrypoint`は、`fastapi`コマンドに対して、次のようにアプリをインポートすべきであることを伝えます:
    
    ```python
    from main import app
    ```
    
    もしコード構成が次のようになっている場合:
    
    ```
    .
    ├── backend
    │   ├── main.py
    │   ├── __init__.py
    ```
    
    このときは`entrypoint`を次のように設定します:
    
    ```toml
    [tool.fastapi]
    entrypoint = "backend.main:app"
    ```
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 15.9K bytes
    - Click Count (0)
  4. docs/de/docs/virtual-environments.md

    ///
    
    /// info | Info
    
    Diese Seite wird Ihnen beibringen, wie Sie **virtuelle Umgebungen** verwenden und wie sie funktionieren.
    
    Wenn Sie bereit sind, ein **Tool zu verwenden, das alles für Sie verwaltet** (einschließlich der Installation von Python), probieren Sie [uv](https://github.com/astral-sh/uv).
    
    ///
    
    ## Ein Projekt erstellen { #create-a-project }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 24.8K bytes
    - Click Count (0)
  5. docs/de/docs/tutorial/security/oauth2-jwt.md

    ---
    
    **FastAPI** geht bei keiner Datenbank, keinem Datenmodell oder Tool Kompromisse ein.
    
    Es gibt Ihnen die volle Flexibilität, diejenigen auszuwählen, die am besten zu Ihrem Projekt passen.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 12.9K bytes
    - Click Count (0)
  6. docs/de/docs/advanced/generate-clients.md

    Weitere SDK-Generatoren finden Sie auf [OpenAPI.Tools](https://openapi.tools/#sdk).
    
    /// tip | Tipp
    
    FastAPI generiert automatisch **OpenAPI 3.1**-Spezifikationen, daher muss jedes von Ihnen verwendete Tool diese Version unterstützen.
    
    ///
    
    ## SDK-Generatoren von FastAPI-Sponsoren { #sdk-generators-from-fastapi-sponsors }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 11.3K bytes
    - Click Count (0)
  7. fastapi/.agents/skills/fastapi/SKILL.md

    Run the production server:
    
    ```bash
    fastapi run
    ```
    
    ### Add an entrypoint in `pyproject.toml`
    
    FastAPI CLI will read the entrypoint in `pyproject.toml` to know where the FastAPI app is declared.
    
    ```toml
    [tool.fastapi]
    entrypoint = "my_app.main:app"
    ```
    
    ### Use `fastapi` with a path
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 01 10:05:57 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  8. docs/ru/docs/tutorial/bigger-applications.md

    Так как ваш объект FastAPI `app` находится в `app/main.py`, вы можете настроить `entrypoint` в файле `pyproject.toml` следующим образом:
    
    ```toml
    [tool.fastapi]
    entrypoint = "app.main:app"
    ```
    
    это эквивалентно импорту:
    
    ```python
    from app.main import app
    ```
    
    Таким образом, команда `fastapi` будет знать, где найти ваше приложение.
    
    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)
  9. docs/tr/docs/tutorial/bigger-applications.md

    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
    from app.main import app
    ```
    
    Böylece `fastapi` komutu uygulamanızı nerede bulacağını bilir.
    
    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)
  10. CHANGELOG/CHANGELOG-1.11.md

    *...
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Feb 06 06:04:15 GMT 2020
    - 328.4K bytes
    - Click Count (0)
Back to Top