Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for prestart (0.18 sec)

  1. docs/en/docs/index.md

    The command `uvicorn main:app` refers to:
    
    * `main`: the file `main.py` (the Python "module").
    * `app`: the object created inside of `main.py` with the line `app = FastAPI()`.
    * `--reload`: make the server restart after code changes. Only do this for development.
    
    </details>
    
    ### Check it
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 23:58:47 GMT 2024
    - 19.2K bytes
    - Viewed (0)
  2. docs/ja/docs/contributing.md

    Typer CLIをインストールする場合、次のコマンドで補完をインストールできます:
    
    <div class="termy">
    
    ```console
    $ typer --install-completion
    
    zsh completion installed in /home/user/.bashrc.
    Completion will take effect once you restart the terminal.
    ```
    
    </div>
    
    ### アプリとドキュメントを同時に
    
    以下の様にサンプルを実行すると:
    
    <div class="termy">
    
    ```console
    $ uvicorn tutorial001:app --reload
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Jun 11 21:38:15 GMT 2023
    - 16.6K bytes
    - Viewed (0)
  3. docs/em/docs/deployment/docker.md

    ## 🏃‍♂ 🔛 🕴 &amp; ⏏
    
    📤 🛎 ➕1️⃣ 🧰 🈚 **▶️ &amp; 🏃‍♂** 👆 📦.
    
    ⚫️ 💪 **☁** 🔗, **☁ ✍**, **Kubernetes**, **☁ 🐕‍🦺**, ♒️.
    
    🌅 (⚖️ 🌐) 💼, 📤 🙅 🎛 🛠️ 🏃 📦 🔛 🕴 &amp; 🛠️ ⏏ 🔛 ❌. 🖼, ☁, ⚫️ 📋 ⏸ 🎛 `--restart`.
    
    🍵 ⚙️ 📦, ⚒ 🈸 🏃 🔛 🕴 &amp; ⏮️ ⏏ 💪 ⚠ &amp; ⚠. ✋️ 🕐❔ **👷 ⏮️ 📦** 🌅 💼 👈 🛠️ 🔌 🔢. 👶
    
    ## 🧬 - 🔢 🛠️
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 27.9K bytes
    - Viewed (0)
  4. docs/ja/docs/deployment/docker.md

    通常、コンテナの**起動と実行**を担当する別のツールがあります。
    
    それは直接**Docker**であったり、**Docker Compose**であったり、**Kubernetes**であったり、**クラウドサービス**であったりします。
    
    ほとんどの場合(またはすべての場合)、起動時にコンテナを実行し、失敗時に再起動を有効にする簡単なオプションがあります。例えばDockerでは、コマンドラインオプションの`--restart`が該当します。
    
    コンテナを使わなければ、アプリケーションを起動時や再起動時に実行させるのは面倒で難しいかもしれません。しかし、**コンテナ**で作業する場合、ほとんどのケースでその機能はデフォルトで含まれています。✨
    
    ## レプリケーション - プロセス数
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 44.3K bytes
    - Viewed (0)
  5. docs/en/docs/deployment/server-workers.md

    Gunicorn would also take care of managing **dead processes** and **restarting** new ones if needed to keep the number of workers. So that helps in part with the **restart** concept from the list above.
    
    Nevertheless, you would probably also want to have something outside making sure to **restart Gunicorn** if necessary, and also to **run it on startup**, etc.
    
    ## Uvicorn with Workers
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  6. docs/fr/docs/contributing.md

    <div class="termy">
    
    ```console
    $ typer --install-completion
    
    zsh completion installed in /home/user/.bashrc.
    Completion will take effect once you restart the terminal.
    ```
    
    </div>
    
    ### Apps et documentation en même temps
    
    Si vous exécutez les exemples avec, par exemple :
    
    <div class="termy">
    
    ```console
    $ uvicorn tutorial001:app --reload
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Jul 27 18:51:07 GMT 2023
    - 16.3K bytes
    - Viewed (0)
  7. docs/zh/docs/contributing.md

    如果你已经安装 Typer CLI ,则可以使用以下命令安装自动补全功能:
    
    <div class="termy">
    
    ```console
    $ typer --install-completion
    
    zsh completion installed in /home/user/.bashrc.
    Completion will take effect once you restart the terminal.
    ```
    
    </div>
    
    ### 文档架构
    
    文档使用 <a href="https://www.mkdocs.org/" class="external-link" target="_blank">MkDocs</a> 生成。
    
    在 `./scripts/docs.py` 中还有额外工具 / 脚本来处理翻译。
    
    !!! tip
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Wed Mar 13 11:57:21 GMT 2024
    - 12.9K bytes
    - Viewed (0)
  8. README.md

    The command `uvicorn main:app` refers to:
    
    * `main`: the file `main.py` (the Python "module").
    * `app`: the object created inside of `main.py` with the line `app = FastAPI()`.
    * `--reload`: make the server restart after code changes. Only do this for development.
    
    </details>
    
    ### Check it
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 23:58:47 GMT 2024
    - 21.9K bytes
    - Viewed (0)
  9. docs/en/docs/deployment/docker.md

    ## Running on Startup and Restarts
    
    There is normally another tool in charge of **starting and running** your container.
    
    It could be **Docker** directly, **Docker Compose**, **Kubernetes**, a **cloud service**, etc.
    
    In most (or all) cases, there's a simple option to enable running the container on startup and enabling restarts on failures. For example, in Docker, it's the command line option `--restart`.
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 34.3K bytes
    - Viewed (0)
  10. docs/ru/docs/contributing.md

    <div class="termy">
    
    ```console
    $ typer --install-completion
    
    zsh completion installed in /home/user/.bashrc.
    Completion will take effect once you restart the terminal.
    ```
    
    </div>
    
    ### Приложения и документация одновременно
    
    Если Вы запускаете приложение, например так:
    
    <div class="termy">
    
    ```console
    $ uvicorn tutorial001:app --reload
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Jun 11 21:38:15 GMT 2023
    - 22.5K bytes
    - Viewed (0)
Back to top