Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for esbuild (0.2 sec)

  1. .github/workflows/publish.yml

              path: ${{ env.pythonLocation }}
              key: ${{ runner.os }}-python-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-publish
          - name: Install build dependencies
            run: pip install build
          - name: Build distribution
            run: python -m build
          - name: Publish
            uses: pypa/gh-action-pypi-publish@v1.8.14
            with:
              password: ${{ secrets.PYPI_API_TOKEN }}
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 03:12:00 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  2. .gitignore

    .idea
    .ipynb_checkpoints
    .mypy_cache
    .vscode
    __pycache__
    .pytest_cache
    htmlcov
    dist
    site
    .coverage
    coverage.xml
    .netlify
    test.db
    log.txt
    Pipfile.lock
    env3.*
    env
    docs_build
    site_build
    venv
    docs.zip
    archive.zip
    
    # vim temporary files
    *~
    .*.sw?
    .cache
    
    # macOS
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Aug 19 13:11:35 GMT 2023
    - 268 bytes
    - Viewed (0)
  3. docs/en/docs/contributing.md

    Once you are done, you can also test it all as it would look online, including all the other languages.
    
    To do that, first build all the docs:
    
    <div class="termy">
    
    ```console
    // Use the command "build-all", this will take a bit
    $ python ./scripts/docs.py build-all
    
    Building docs for: en
    Building docs for: es
    Successfully built docs for: es
    ```
    
    </div>
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Jan 11 17:42:43 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  4. .github/workflows/latest-changes.yml

        branches:
          - master
        types:
          - closed
      workflow_dispatch:
        inputs:
          number:
            description: PR number
            required: true
          debug_enabled:
            description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
            required: false
            default: 'false'
    
    jobs:
      latest-changes:
        runs-on: ubuntu-latest
        steps:
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Jan 09 14:57:33 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  5. docs/em/docs/contributing.md

    ๐Ÿ‘ˆ, ๐Ÿฅ‡ ๐Ÿ— ๐ŸŒ ๐Ÿฉบ:
    
    <div class="termy">
    
    ```console
    // Use the command "build-all", this will take a bit
    $ 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>
    
    ๐Ÿ‘ˆ ๐Ÿ— ๐ŸŒ ๐Ÿฉบ `./docs_build/` ๐Ÿ”  ๐Ÿ‡ช๐Ÿ‡ธ. ๐Ÿ‘‰ ๐Ÿ”Œ โŽ ๐Ÿ™† ๐Ÿ“ โฎ๏ธ โŒ โœ, โฎ๏ธ ๐Ÿ—’ ๐Ÿ’ฌ ๐Ÿ‘ˆ "๐Ÿ‘‰ ๐Ÿ“ ๐Ÿšซ โœ”๏ธ โœ". โœ‹๏ธ ๐Ÿ‘† ๐Ÿšซ โœ”๏ธ ๐Ÿ•ณ โฎ๏ธ ๐Ÿ‘ˆ ๐Ÿ“.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Jun 11 21:38:15 GMT 2023
    - 11.4K bytes
    - Viewed (0)
  6. docs/en/docs/benchmarks.md

    * **Starlette**:
        * Will have the next best performance, after Uvicorn. In fact, Starlette uses Uvicorn to run. So, it probably can only get "slower" than Uvicorn by having to execute more code.
        * But it provides you the tools to build simple web applications, with routing based on paths, etc.
        * If you are comparing Starlette, compare it against Sanic, Flask, Django, etc. Web frameworks (or microframeworks).
    * **FastAPI**:
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  7. docs/en/docs/alternatives.md

    ## Previous tools
    
    ### <a href="https://www.djangoproject.com/" class="external-link" target="_blank">Django</a>
    
    It's the most popular Python framework and is widely trusted. It is used to build systems like Instagram.
    
    It's relatively tightly coupled with relational databases (like MySQL or PostgreSQL), so, having a NoSQL database (like Couchbase, MongoDB, Cassandra, etc) as the main store engine is not very easy.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 23.2K bytes
    - Viewed (0)
  8. docs/fr/docs/deployment/docker.md

    * Allez dans le rรฉpertoire du projet (dans lequel se trouve votre `Dockerfile`, contenant votre rรฉpertoire `app`).
    * Construisez votre image FastAPI :
    
    <div class="termy">
    
    ```console
    $ docker build -t myimage .
    
    ---> 100%
    ```
    
    </div>
    
    ## Dรฉmarrer le conteneur Docker
    
    * Exรฉcutez un conteneur basรฉ sur votre imageย :
    
    <div class="termy">
    
    ```console
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 7.5K bytes
    - Viewed (0)
  9. docs/it/docs/index.md

    </p>
    <p align="center">
    <a href="https://travis-ci.com/tiangolo/fastapi" target="_blank">
        <img src="https://travis-ci.com/tiangolo/fastapi.svg?branch=master" alt="Build Status">
    </a>
    <a href="https://codecov.io/gh/tiangolo/fastapi" target="_blank">
        <img src="https://img.shields.io/codecov/c/github/tiangolo/fastapi" alt="Coverage">
    </a>
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 23:58:47 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/generate-clients.md

    This also means that if something changed it will be **reflected** on the client code automatically. And if you **build** the client it will error out if you have any **mismatch** in the data used.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 10.5K bytes
    - Viewed (0)
Back to top