- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 103 for toXml (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/ru/docs/advanced/behind-a-proxy.md
Затем создайте файл `traefik.toml` со следующим содержимым: ```TOML hl_lines="3" [entryPoints] [entryPoints.http] address = ":9999" [providers] [providers.file] filename = "routes.toml" ``` Это говорит Traefik слушать порт 9999 и использовать другой файл `routes.toml`. /// tip | СоветCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 22.7K bytes - Click Count (0) -
docs/uk/docs/advanced/behind-a-proxy.md
Потім створіть файл `traefik.toml` з таким вмістом: ```TOML hl_lines="3" [entryPoints] [entryPoints.http] address = ":9999" [providers] [providers.file] filename = "routes.toml" ``` Це вказує Traefik слухати порт 9999 і використовувати інший файл `routes.toml`. /// tip | ПорадаCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 23.1K bytes - Click Count (0) -
.github/workflows/translate.yml
with: python-version-file: ".python-version" - name: Setup uv uses: astral-sh/setup-uv@v7 with: cache-dependency-glob: | pyproject.toml uv.lock - name: Install Dependencies run: uv sync --locked --no-dev --group github-actions --group translations - name: Export Language Codes id: show-langs run: |Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Mar 18 15:36:56 GMT 2026 - 4K bytes - Click Count (0) -
fastapi/.agents/skills/fastapi/SKILL.md
```bash fastapi run ``` ### Add an entrypoint in `pyproject.toml` FastAPI CLI will read the entrypoint in `pyproject.toml` to know where the FastAPI app is declared. ```toml [tool.fastapi] entrypoint = "my_app.main:app" ``` ### Use `fastapi` with a path
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 01 10:05:57 GMT 2026 - 10.1K bytes - Click Count (0) -
docs/zh/docs/advanced/behind-a-proxy.md
[下载 Traefik](https://github.com/containous/traefik/releases),它是一个单独的二进制文件,你可以解压压缩包并直接在终端中运行。 然后创建一个 `traefik.toml` 文件,内容如下: ```TOML hl_lines="3" [entryPoints] [entryPoints.http] address = ":9999" [providers] [providers.file] filename = "routes.toml" ``` 这告诉 Traefik 监听端口 9999,并使用另一个文件 `routes.toml`。 /// tip | 提示 我们使用 9999 端口而不是标准 HTTP 端口 80,这样你就不需要用管理员(`sudo`)权限运行。 ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 15.1K bytes - Click Count (0) -
docs/es/docs/advanced/behind-a-proxy.md
Luego crea un archivo `traefik.toml` con: ```TOML hl_lines="3" [entryPoints] [entryPoints.http] address = ":9999" [providers] [providers.file] filename = "routes.toml" ``` Esto le dice a Traefik que escuche en el puerto 9999 y que use otro archivo `routes.toml`. /// tip | ConsejoCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 16.5K bytes - Click Count (0) -
docs/ru/docs/tutorial/first-steps.md
### Настройте app `entrypoint` в `pyproject.toml` { #configure-the-app-entrypoint-in-pyproject-toml } Вы можете указать расположение вашего приложения в файле `pyproject.toml`, например: ```toml [tool.fastapi] entrypoint = "main:app" ``` Этот `entrypoint` подскажет команде `fastapi`, что приложение нужно импортировать так:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 18.7K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/first-steps.md
而且有許多替代方案,所有這些都是基於 OpenAPI。你可以輕鬆地將任何這些替代方案添加到使用 **FastAPI** 建置的應用程式中。 你也可以用它自動生成程式碼,讓用戶端與你的 API 通訊。例如前端、手機或物聯網(IoT)應用程式。 ### 在 `pyproject.toml` 設定應用的 `entrypoint` { #configure-the-app-entrypoint-in-pyproject-toml } 你可以在 `pyproject.toml` 中設定你的應用位置,例如: ```toml [tool.fastapi] entrypoint = "main:app" ``` 這個 `entrypoint` 會告訴 `fastapi` 指令應該用下面的方式匯入 app: ```python from main import app ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 13.3K bytes - Click Count (0) -
docs/zh-hant/docs/advanced/behind-a-proxy.md
然後建立一個 `traefik.toml` 檔案,內容如下: ```TOML hl_lines="3" [entryPoints] [entryPoints.http] address = ":9999" [providers] [providers.file] filename = "routes.toml" ``` 這告訴 Traefik 監聽 9999 埠,並使用另一個檔案 `routes.toml`。 /// tip 我們使用 9999 埠而不是標準的 HTTP 80 埠,這樣你就不需要以管理員(`sudo`)權限來執行。 /// 接著建立另一個 `routes.toml` 檔案: ```TOML hl_lines="5 12 20"Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 15.3K bytes - Click Count (0) -
docs/ko/docs/tutorial/first-steps.md
API와 통신하는 클라이언트(프론트엔드, 모바일, IoT 애플리케이션 등)를 위해 코드를 자동으로 생성하는 데도 사용할 수 있습니다. ### `pyproject.toml`에 앱 `entrypoint` 구성하기 { #configure-the-app-entrypoint-in-pyproject-toml } 다음과 같이 `pyproject.toml` 파일에서 앱이 위치한 곳을 구성할 수 있습니다: ```toml [tool.fastapi] entrypoint = "main:app" ``` 해당 `entrypoint`는 `fastapi` 명령어에 다음과 같이 앱을 임포트하라고 알려줍니다: ```pythonCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 15K bytes - Click Count (0)