Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for reload (0.29 sec)

  1. docs/de/docs/contributing.md

    ### Dokumentation live
    
    Während der lokalen Entwicklung gibt es ein Skript, das die Site erstellt, auf Änderungen prüft und direkt neu lädt (Live Reload):
    
    <div class="termy">
    
    ```console
    $ python ./scripts/docs.py live
    
    <span style="color: green;">[INFO]</span> Serving on http://127.0.0.1:8008
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 23:55:23 GMT 2024
    - 16.2K bytes
    - Viewed (0)
  2. docs/zh/docs/contributing.md

    这有助于确保:
    
    * 文档始终是最新的。
    * 文档示例可以直接运行。
    * 绝大多数特性既在文档中得以阐述,又通过测试覆盖进行保障。
    
    
    ### 应用和文档同时运行
    
    如果你使用以下方式运行示例程序:
    
    <div class="termy">
    
    ```console
    $ uvicorn tutorial001:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    由于 Uvicorn 默认使用 `8000` 端口 ,因此运行在 `8008` 端口上的文档不会与之冲突。
    
    ### 翻译
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Wed Mar 13 11:57:21 GMT 2024
    - 12.9K bytes
    - Viewed (0)
  3. docs/en/docs/contributing.md

    #### Apps and docs at the same time
    
    If you run the examples with, e.g.:
    
    <div class="termy">
    
    ```console
    $ uvicorn tutorial001:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Jan 11 17:42:43 GMT 2024
    - 14.1K bytes
    - Viewed (0)
Back to top