Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for esbuild (0.16 sec)

  1. docs/en/docs/deployment/docker.md

    ```Dockerfile
    COPY ./app /code/app
    ```
    
    ### Build the Docker Image
    
    Now that all the files are in place, let's build the container image.
    
    * Go to the project directory (in where your `Dockerfile` is, containing your `app` directory).
    * Build your FastAPI image:
    
    <div class="termy">
    
    ```console
    $ docker build -t myimage .
    
    ---> 100%
    ```
    
    </div>
    
    !!! tip
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 34K bytes
    - Viewed (0)
  2. docs/em/docs/deployment/docker.md

    COPY ./app /code/app
    ```
    
    ### 🏗 ☁ 🖼
    
    🔜 👈 🌐 📁 🥉, ➡️ 🏗 📦 🖼.
    
    * 🚶 🏗 📁 (🌐❔ 👆 `Dockerfile` , ⚗ 👆 `app` 📁).
    * 🏗 👆 FastAPI 🖼:
    
    <div class="termy">
    
    ```console
    $ docker build -t myimage .
    
    ---> 100%
    ```
    
    </div>
    
    !!! tip
        👀 `.` 🔚, ⚫️ 🌓 `./`, ⚫️ 💬 ☁ 📁 ⚙️ 🏗 📦 🖼.
    
        👉 💼, ⚫️ 🎏 ⏮️ 📁 (`.`).
    
    ### ▶️ ☁ 📦
    
    * 🏃 📦 ⚓️ 🔛 👆 🖼:
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 27.9K bytes
    - Viewed (0)
  3. .github/workflows/deploy-docs.yml

    name: Deploy Docs
    on:
      workflow_run:
        workflows:
          - Build Docs
        types:
          - completed
    
    jobs:
      deploy-docs:
        runs-on: ubuntu-latest
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v4
          - name: Clean site
            run: |
              rm -rf ./site
              mkdir ./site
    Others
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Mar 19 01:33:28 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  4. docs/ru/docs/contributing.md

    <div class="termy">
    
    ```console
    // Используйте команду "build-all", это займёт немного времени
    $ python ./scripts/docs.py build-all
    
    Updating es
    Updating en
    Building docs for: en
    Building docs for: es
    Successfully built docs for: es
    Copying en index.md to README.md
    ```
    
    </div>
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sun Jun 11 21:38:15 GMT 2023
    - 22.5K bytes
    - Viewed (0)
  5. fastapi/_compat.py

        ) -> Any:
            return annotation
    
        def _normalize_errors(errors: Sequence[Any]) -> List[Dict[str, Any]]:
            return errors  # type: ignore[return-value]
    
        def _model_rebuild(model: Type[BaseModel]) -> None:
            model.model_rebuild()
    
        def _model_dump(
            model: BaseModel, mode: Literal["json", "python"] = "json", **kwargs: Any
        ) -> Any:
            return model.model_dump(mode=mode, **kwargs)
    
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/server-workers.md

    I'll also show you the **official Docker image** that includes **Gunicorn with Uvicorn workers** and some default configurations that can be useful for simple cases.
    
    There I'll also show you how to **build your own image from scratch** to run a single Uvicorn process (without Gunicorn). It is a simple process and is probably what you would want to do when using a distributed container management system like **Kubernetes**.
    
    ## Recap
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  7. docs/de/docs/deployment/docker.md

    * Gehen Sie zum Projektverzeichnis (dort, wo sich Ihr `Dockerfile` und Ihr `app`-Verzeichnis befindet).
    * Erstellen Sie Ihr FastAPI-Image:
    
    <div class="termy">
    
    ```console
    $ docker build -t myimage .
    
    ---> 100%
    ```
    
    </div>
    
    !!! tip "Tipp"
        Beachten Sie das `.` am Ende, es entspricht `./` und teilt Docker mit, welches Verzeichnis zum Erstellen des Containerimages verwendet werden soll.
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 18:19:17 GMT 2024
    - 38.9K bytes
    - Viewed (0)
  8. docs/pt/docs/deployment/docker.md

    * Vá para o diretório do projeto (onde está o seu `Dockerfile`, contendo o diretório `app`).
    * Construa sua imagem FastAPI:
    
    <div class="termy">
    
    ```console
    $ docker build -t myimage .
    
    ---> 100%
    ```
    
    </div>
    
    !!! tip
        Note o `.` no final, é equivalente a `./`, ele diz ao Docker o diretório a ser usado para construir a imagem do contêiner.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 37.4K bytes
    - Viewed (0)
Back to top