Search Options

Results per page
Sort
Preferred Languages
Advance

Results 341 - 350 of 410 for div0 (0.02 sec)

  1. docs/en/docs/how-to/conditional-openapi.md

    Then you could disable OpenAPI (including the UI docs) by setting the environment variable `OPENAPI_URL` to the empty string, like:
    
    <div class="termy">
    
    ```console
    $ OPENAPI_URL= uvicorn main:app
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    Then if you go to the URLs at `/openapi.json`, `/docs`, or `/redoc` you will just get a `404 Not Found` error like:
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Oct 28 11:21:54 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. docs/en/docs/css/custom.css

    a.announce-link:hover {
      color: var(--md-accent-fg-color);
    }
    
    .announce-wrapper {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      align-items: center;
    }
    
    .announce-wrapper div.item {
      display: none;
    }
    
    .announce-wrapper .sponsor-badge {
      display: block;
      position: absolute;
      top: -10px;
      right: 0;
      font-size: 0.5rem;
      color: #999;
      background-color: #666;
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Jul 17 02:12:29 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. docs/pt/docs/fastapi-cli.md

    Para rodar seu app FastAPI em desenvolvimento, vocรช pode usar o comando `fastapi dev`:
    
    <div class="termy">
    
    ```console
    $ <font color="#4E9A06">fastapi</font> dev <u style="text-decoration-style:single">main.py</u>
    <font color="#3465A4">INFO    </font> Using path <font color="#3465A4">main.py</font>
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. docs/em/docs/tutorial/security/first-steps.md

    ๐Ÿ‘‰ โ†ฉ๏ธ **Oauth2๏ธโƒฃ** โš™๏ธ "๐Ÿ“จ ๐Ÿ“Š" ๐Ÿ“จ `username` &amp; `password`.
    
    ///
    
    ๐Ÿƒ ๐Ÿ–ผ โฎ๏ธ:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    ## โœ… โšซ๏ธ
    
    ๐Ÿšถ ๐ŸŽ“ ๐Ÿฉบ: <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a>.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. src/main/webapp/css/admin/respond.min.js

     *  */
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 08 12:14:13 UTC 2015
    - 4.3K bytes
    - Viewed (0)
  6. docs/ja/docs/how-to/conditional-openapi.md

    ใใ—ใฆใ€ใ“ใ‚Œใ‚’ `FastAPI` appใ‚’ไฝœใ‚‹้š›ใซไฝฟใ„ใพใ™ใ€‚
    
    ใใ‚Œใ‹ใ‚‰ใ€ไปฅไธ‹ใฎใ‚ˆใ†ใซ `OPENAPI_URL` ใจใ„ใ†็’ฐๅขƒๅค‰ๆ•ฐใ‚’็ฉบๆ–‡ๅญ—ๅˆ—ใซ่จญๅฎšใ™ใ‚‹ใ“ใจใซใ‚ˆใฃใฆOpenAPI (UIใƒ‰ใ‚ญใƒฅใƒกใƒณใƒˆใ‚’ๅซใ‚€) ใ‚’็„กๅŠนๅŒ–ใ™ใ‚‹ใ“ใจใŒใงใใพใ™ใ€‚
    
    <div class="termy">
    
    ```console
    $ OPENAPI_URL= uvicorn main:app
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    ใ™ใ‚‹ใจใ€ไปฅไธ‹ใฎใ‚ˆใ†ใซ `/openapi.json`, `/docs`, `/redoc` ใฎใฉใฎURLใซใ‚ขใ‚ฏใ‚ปใ‚นใ—ใฆใ‚‚ใ€ `404 Not Found` ใ‚จใƒฉใƒผใŒ่ฟ”ใฃใฆใใ‚‹ใ‚ˆใ†ใซใชใ‚Šใพใ™ใ€‚
    
    ```JSON
    {
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/sub-applications.md

    ```
    
    ### Check the automatic API docs
    
    Now, run the `fastapi` command with your file:
    
    <div class="termy">
    
    ```console
    $ fastapi dev main.py
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    And open the docs at <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a>.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. docs/em/docs/deployment/docker.md

    * ๐Ÿšถ ๐Ÿ— ๐Ÿ“ (๐ŸŒโ” ๐Ÿ‘† `Dockerfile` , โš— ๐Ÿ‘† `app` ๐Ÿ“).
    * ๐Ÿ— ๐Ÿ‘† FastAPI ๐Ÿ–ผ:
    
    <div class="termy">
    
    ```console
    $ docker build -t myimage .
    
    ---> 100%
    ```
    
    </div>
    
    /// tip
    
    ๐Ÿ‘€ `.` ๐Ÿ”š, โšซ๏ธ ๐ŸŒ“ `./`, โšซ๏ธ ๐Ÿ’ฌ โ˜ ๐Ÿ“ โš™๏ธ ๐Ÿ— ๐Ÿ“ฆ ๐Ÿ–ผ.
    
    ๐Ÿ‘‰ ๐Ÿ’ผ, โšซ๏ธ ๐ŸŽ โฎ๏ธ ๐Ÿ“ (`.`).
    
    ///
    
    ### โ–ถ๏ธ โ˜ ๐Ÿ“ฆ
    
    * ๐Ÿƒ ๐Ÿ“ฆ โš“๏ธ ๐Ÿ”› ๐Ÿ‘† ๐Ÿ–ผ:
    
    <div class="termy">
    
    ```console
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Aug 12 21:47:53 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. docs/zh-hant/docs/fastapi-cli.md

    **FastAPI CLI** ๆ˜ฏไธ€ๅ€‹ๅ‘ฝไปคๅˆ—็จ‹ๅผ๏ผŒ่ƒฝ็”จไพ†้‹่กŒไฝ ็š„ FastAPI ๆ‡‰็”จ็จ‹ๅผใ€็ฎก็†ไฝ ็š„ FastAPI ๅฐˆๆกˆ็ญ‰ใ€‚
    
    ็•ถไฝ ๅฎ‰่ฃ FastAPI๏ผˆไพ‹ๅฆ‚ไฝฟ็”จ `pip install "fastapi[standard]"`๏ผ‰๏ผŒๅฎƒๆœƒๅŒ…ๅซไธ€ๅ€‹ๅซๅš `fastapi-cli` ็š„ๅฅ—ไปถ๏ผŒ้€™ๅ€‹ๅฅ—ไปถๆไพ›ไบ† `fastapi` ๅ‘ฝไปคใ€‚
    
    ่ฆ้‹่กŒไฝ ็š„ FastAPI ๆ‡‰็”จ็จ‹ๅผไพ†้€ฒ่กŒ้–‹็™ผ๏ผŒไฝ ๅฏไปฅไฝฟ็”จ `fastapi dev` ๅ‘ฝไปค๏ผš
    
    <div class="termy">
    
    ```console
    $ <font color="#4E9A06">fastapi</font> dev <u style="text-decoration-style:single">main.py</u>
    <font color="#3465A4">INFO    </font> Using path <font color="#3465A4">main.py</font>
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Oct 18 12:12:01 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. docs/bucket/versioning/DESIGN.md

            }
          }
        }
      ]
    }
    ```
    
    ### v1.3+ versions
    
    Version 1.3 introduces changes to help with [faster metadata reads and updates](https://blog.min.io/minio-versioning-metadata-deep-dive/)
    
    | Entry           | Encoding                    | Content
    | ----------------|-----------------------------|----------------------------------------
    | xlHeaderVersion | msgp uint                   | header version identifier
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Jul 17 15:43:14 UTC 2022
    - 5.8K bytes
    - Viewed (0)
Back to top