Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for unit (0.17 sec)

  1. docs/ru/docs/deployment/docker.md

        В этом же разделе, но позже, я покажу вам пример использования Poetry. 👇
    
    ### Создать приложение **FastAPI**
    
    * Создайте директорию `app` и перейдите в неё.
    * Создайте пустой файл `__init__.py`.
    * Создайте файл `main.py` и заполните его:
    
    ```Python
    from typing import Union
    
    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.get("/")
    def read_root():
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 57.5K bytes
    - Viewed (0)
Back to top