Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 81 for Gerber (0.31 sec)

  1. docs/pt/docs/help-fastapi.md

    * Para corrigir um bug/questรฃo.
    * Para adicionar um novo recurso.
    
    ## Entre no chat
    
    Entre no ๐Ÿ‘ฅ <a href="https://discord.gg/VQjSZaeJmf" class="external-link" target="_blank">server de conversa do Discord</a> ๐Ÿ‘ฅ e conheรงa novas pessoas da comunidade
    do FastAPI.
    
    !!! tip "Dica"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  2. docs/en/docs/deployment/index.md

    This is in contrast to the **development** stages, where you are constantly changing the code, breaking it and fixing it, stopping and restarting the development server, etc.
    
    ## Deployment Strategies
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Jan 11 16:31:18 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  3. docs/de/docs/tutorial/index.md

    </div>
    
    ... das beinhaltet auch `uvicorn`, welchen Sie als Server verwenden kรถnnen, der ihren Code ausfรผhrt.
    
    !!! note "Hinweis"
        Sie kรถnnen die einzelnen Teile auch separat installieren.
    
        Das folgende wรผrden Sie wahrscheinlich tun, wenn Sie Ihre Anwendung in der Produktion einsetzen:
    
        ```
        pip install fastapi
        ```
    
        Installieren Sie auch `uvicorn` als Server:
    
        ```
        pip install "uvicorn[standard]"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Jan 16 12:11:15 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  4. tests/test_openapi_servers.py

    from dirty_equals import IsOneOf
    from fastapi import FastAPI
    from fastapi.testclient import TestClient
    
    app = FastAPI(
        servers=[
            {"url": "/", "description": "Default, relative server"},
            {
                "url": "http://staging.localhost.tiangolo.com:8000",
                "description": "Staging but actually localhost still",
            },
            {"url": "https://prod.example.com"},
        ]
    )
    
    
    @app.get("/foo")
    def foo():
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Jul 07 17:12:13 GMT 2023
    - 2K bytes
    - Viewed (0)
  5. docs/fr/docs/tutorial/index.md

    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    <span style="color: green;">INFO</span>:     Started reloader process [28720]
    <span style="color: green;">INFO</span>:     Started server process [28722]
    <span style="color: green;">INFO</span>:     Waiting for application startup.
    <span style="color: green;">INFO</span>:     Application startup complete.
    ```
    
    </div>
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Jul 27 18:51:55 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  6. docs/de/docs/advanced/middleware.md

    In diesem Abschnitt werden wir sehen, wie man andere Middlewares verwendet.
    
    ## ASGI-Middleware hinzufรผgen
    
    Da **FastAPI** auf Starlette basiert und die <abbr title="Asynchronous Server Gateway Interface">ASGI</abbr>-Spezifikation implementiert, kรถnnen Sie jede ASGI-Middleware verwenden.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:18:15 GMT 2024
    - 4.4K bytes
    - Viewed (0)
  7. docs/em/docs/advanced/middleware.md

    &amp; โคด๏ธ ๐Ÿ‘† โœ โ” ๐Ÿต [โšœ โฎ๏ธ `CORSMiddleware`](../tutorial/cors.md){.internal-link target=_blank}.
    
    ๐Ÿ‘‰ ๐Ÿ“„ ๐Ÿ‘ฅ ๐Ÿ”œ ๐Ÿ‘€ โ” โš™๏ธ ๐ŸŽ ๐Ÿ› ๏ธ.
    
    ## โŽ ๐Ÿ”ซ ๐Ÿ› ๏ธ
    
    **FastAPI** โš“๏ธ ๐Ÿ”› ๐Ÿ’ƒ &amp; ๐Ÿ› ๏ธ <abbr title="Asynchronous Server Gateway Interface">๐Ÿ”ซ</abbr> ๐Ÿ”ง, ๐Ÿ‘† ๐Ÿ’ช โš™๏ธ ๐Ÿ™† ๐Ÿ”ซ ๐Ÿ› ๏ธ.
    
    ๐Ÿ› ๏ธ ๐Ÿšซ โœ”๏ธ โš’ FastAPI โš–๏ธ ๐Ÿ’ƒ ๐Ÿ‘ท, ๐Ÿ“ โšซ๏ธ โฉ ๐Ÿ”ซ ๐Ÿ”Œ.
    
    ๐Ÿข, ๐Ÿ”ซ ๐Ÿ› ๏ธ ๐ŸŽ“ ๐Ÿ‘ˆ โŒ› ๐Ÿ“จ ๐Ÿ”ซ ๐Ÿ“ฑ ๐Ÿฅ‡ โŒ.
    
    , ๐Ÿงพ ๐Ÿฅ‰-๐Ÿฅณ ๐Ÿ”ซ ๐Ÿ› ๏ธ ๐Ÿ‘ซ ๐Ÿ”œ ๐ŸŽฒ ๐Ÿ’ฌ ๐Ÿ‘† ๐Ÿ•ณ ๐Ÿ’–:
    
    ```Python
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Apr 01 09:26:04 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  8. docs/zh/docs/deployment/deta.md

    ไพ‹ๅฆ‚๏ผŒID `5`ใ€‚
    
    ็Žฐๅœจ่ทณ่ฝฌ่‡ณ <a href="https://web.deta.sh/" class="external-link" target="_blank">https://web.deta.shใ€‚</a>
    
    ๅทฆ่พนๆ ๆœ‰ไธช <abbr title="it comes from Micro(server)">"Micros"</abbr> ๆ ‡็ญพ๏ผŒ้‡Œ้ขๆ˜ฏๆ‰€ๆœ‰็š„ๅบ”็”จใ€‚
    
    ่ฟ˜ๆœ‰ไธ€ไธช **Details** ๅ’Œ **Visor** ๆ ‡็ญพ๏ผŒ่ทณ่ฝฌๅˆฐ **Visor** ๆ ‡็ญพใ€‚
    
    ๅœจ่ฟ™้‡ŒๆŸฅ็œ‹ๆœ€่ฟ‘ๅ‘้€็ป™ๅบ”็”จ็š„่ฏทๆฑ‚ใ€‚
    
    ๆ‚จๅฏไปฅ็ผ–่พ‘ๆˆ–้‡ๆ–ฐไฝฟ็”จ่ฟ™ไบ›่ฏทๆฑ‚ใ€‚
    
    <img src="/img/deployment/deta/image02.png">
    
    ## ๆ›ดๅคšๅ†…ๅฎน
    
    Plain Text
    - Registered: Sun Mar 31 07:19:09 GMT 2024
    - Last Modified: Sun Jan 28 18:06:55 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  9. docs/de/docs/advanced/security/http-basic-auth.md

    #### Die Zeit zum Antworten hilft den Angreifern
    
    Wenn die Angreifer zu diesem Zeitpunkt feststellen, dass der Server einige Mikrosekunden lรคnger braucht, um die Antwort โ€žIncorrect username or passwordโ€œ zu senden, wissen sie, dass sie _etwas_ richtig gemacht haben, einige der Anfangsbuchstaben waren richtig.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:28:08 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  10. docs/em/docs/deployment/https.md

        * ๐Ÿ™…โ€โ™‚ ๐Ÿค” โ” ๐Ÿฆ ๐Ÿ‘† ๐Ÿ’ฝ โš–๏ธ โ” ๐Ÿคช ๐Ÿ”  ๐Ÿˆธ ๐Ÿ‘† โœ”๏ธ ๐Ÿ”› โšซ๏ธ ๐Ÿ’ช.
        * ๐Ÿ“ค **โš—** ๐Ÿ‘‰, ๐Ÿ‘.
    * ๐Ÿ“ค **โ†”** **๐Ÿค** ๐Ÿ› ๏ธ (1๏ธโƒฃ ๐Ÿšš ๐Ÿ” ๐Ÿ•ธ ๐ŸŽš, โญ ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ”) ๐Ÿค™ **<a href="https://en.wikipedia.org/wiki/Server_Name_Indication" class="external-link" target="_blank"><abbr title="Server Name Indication">๐Ÿ‘ฒ</abbr></a>**.
        * ๐Ÿ‘‰ ๐Ÿ‘ฒ โ†” โœ” 1๏ธโƒฃ ๐Ÿ‘ ๐Ÿ’ฝ (โฎ๏ธ **๐Ÿ‘ ๐Ÿ“ข ๐Ÿ“ข**) โœ”๏ธ **๐Ÿ“š ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ” ๐Ÿ“„** &amp; ๐Ÿฆ **๐Ÿ’— ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ” ๐Ÿ†”/๐Ÿˆธ**.
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Apr 01 09:26:04 GMT 2023
    - 9.4K bytes
    - Viewed (0)
Back to top