Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 197 for Scripts (0.1 sec)

  1. ci/official/utilities/setup.sh

    #
    # Common setup for all TF scripts.
    #
    # Make as FEW changes to this file as possible. It should not contain utility
    # functions (except for tfrun); use dedicated scripts instead and reference them
    # specifically. Use your best judgment to keep the scripts in this directory
    # lean and easy to follow. When in doubt, remember that for CI scripts, "keep it
    # simple" is MUCH more important than "don't repeat yourself."
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Aug 07 23:01:25 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. ci/official/README.md

    ### Brief System Overview
    
    The top-level scripts and utility scripts should be fairly well-documented. Here
    is a brief explanation of how they tie together:
    
    1.  `envs/*` are lists of variables made with bash syntax. A user must set a
        `TFCI` env param pointing to a list of `env` files.
    2.  `utilities/setup.sh`, initialized by all top-level scripts, reads and sets
        values from those `TFCI` paths.
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. docs/en/docs/contributing.md

    ### Docs Structure
    
    The documentation uses <a href="https://www.mkdocs.org/" class="external-link" target="_blank">MkDocs</a>.
    
    And there are extra tools/scripts in place to handle translations in `./scripts/docs.py`.
    
    /// tip
    
    You don't need to see the code in `./scripts/docs.py`, you just use it in the command line.
    
    ///
    
    All the documentation is in Markdown format in the directory `./docs/en/`.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Aug 25 02:44:06 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. docs/de/docs/contributing.md

    //// tab | Windows PowerShell
    
    <div class="termy">
    
    ```console
    $ .\env\Scripts\Activate.ps1
    ```
    
    </div>
    
    ////
    
    //// tab | Windows Bash
    
    Oder, wenn Sie Bash für Windows verwenden (z. B. <a href="https://gitforwindows.org/" class="external-link" target="_blank">Git Bash</a>):
    
    <div class="termy">
    
    ```console
    $ source ./env/Scripts/activate
    ```
    
    </div>
    
    ////
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. docs/fr/docs/contributing.md

    ## Documentation
    
    Tout d'abord, assurez-vous que vous configurez votre environnement comme décrit ci-dessus, qui installera toutes les exigences.
    
    La documentation utilise <a href="https://www.mkdocs.org/" class="external-link" target="_blank">MkDocs</a>.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. docs/zh/docs/contributing.md

    //// tab | Windows PowerShell
    
    <div class="termy">
    
    ```console
    $ .\env\Scripts\Activate.ps1
    ```
    
    </div>
    
    ////
    
    //// tab | Windows Bash
    
    Or if you use Bash for Windows (e.g. <a href="https://gitforwindows.org/" class="external-link" target="_blank">Git Bash</a>):
    
    <div class="termy">
    
    ```console
    $ source ./env/Scripts/activate
    ```
    
    </div>
    
    ////
    
    要检查操作是否成功,运行:
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. docs/ru/docs/contributing.md

    //// tab | Windows PowerShell
    
    <div class="termy">
    
    ```console
    $ .\env\Scripts\Activate.ps1
    ```
    
    </div>
    
    ////
    
    //// tab | Windows Bash
    
    Если Вы пользуетесь Bash для Windows (например: <a href="https://gitforwindows.org/" class="external-link" target="_blank">Git Bash</a>):
    
    <div class="termy">
    
    ```console
    $ source ./env/Scripts/activate
    ```
    
    </div>
    
    ////
    
    Проверьте, что всё сработало:
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  8. docs/ja/docs/contributing.md

    ## ドキュメント
    
    まず、上記のように環境をセットアップしてください。すべての必要なパッケージがインストールされます。
    
    ドキュメントは、<a href="https://www.mkdocs.org/" class="external-link" target="_blank">MkDocs</a>を使っています。
    
    そして、翻訳を処理するためのツール/スクリプトが、`./scripts/docs.py`に用意されています。
    
    /// tip | "豆知識"
    
    `./scripts/docs.py`のコードを見る必要はなく、コマンドラインからただ使うだけです。
    
    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. .github/workflows/build-docs.yml

            env:
              TOKEN: ${{ secrets.FASTAPI_MKDOCS_MATERIAL_INSIDERS }}
          - name: Verify Docs
            run: python ./scripts/docs.py verify-docs
          - name: Export Language Codes
            id: show-langs
            run: |
              echo "langs=$(python ./scripts/docs.py langs-json)" >> $GITHUB_OUTPUT
    
      build-docs:
        needs:
          - changes
          - langs
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Oct 12 12:27:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. docs/en/docs/virtual-environments.md

    <div class="termy">
    
    ```console
    $ .venv\Scripts\Activate.ps1
    ```
    
    </div>
    
    ////
    
    //// tab | Windows Bash
    
    Or if you use Bash for Windows (e.g. <a href="https://gitforwindows.org/" class="external-link" target="_blank">Git Bash</a>):
    
    <div class="termy">
    
    ```console
    $ source .venv/Scripts/activate
    ```
    
    </div>
    
    ////
    
    /// tip
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Aug 24 03:16:23 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top