📦

Box CLIの環境忘備録

2022/01/18に公開

https://developer.box.com/guides/tooling/cli/quick-start/
こちらを参考に導入時の忘備録を残した記事です。

CLI本体のinstall

yarn global add @box/cli
box -v
# @box/cli/2.9.0 darwin-arm64 node-v14.17.5

構成ファイルの設定

開発コンソールからJSONの構成ファイルをダウンロードして、構成ファイルを.box/configs/ディレクトリに保存します。

cd # Userフォルダへ移動
mkdir .box
mkdir .box/config
open .box/config

下記のコマンドで構成を保存します。

box configure:environments:add [構成ファイルのPATH]

folder情報の取得

box folders:get 0

その他のコマンドについて

https://github.com/box/boxcli#command-topics-1

Discussion