- 下書き途中なのでそのうちまだ増える予定である。
- あくまで自分用であり、他人にこうレビューしろという意図はない。
- ある程度書ききったら非公開にする可能性もある。
- 指摘をする際は、必ず「理由」と「解決策」をセットにする(「この書き方はダメです」だけではレビューにならない)。
[MUST]は、仕様・コーディング規約に反するもの/バグが起きているもの/将来的に深刻な問題になりそうなもの/ユーティリティ・アクセシビリティを阻害しているものを優先して扱う。次点として「改善したほうが良いもの」を挙げる。
| #!/usr/bin/env bash | |
| # local-wp — Run commands inside a Local by Flywheel site shell non-interactively. | |
| # | |
| # About: | |
| # このシェルスクリプトはClaude Codeなどの生成AIツールがLocalのDocker内でCLIコマンドを実行するためのヘルパースクリプトです。 | |
| # CLAUDE.mdなどに書いておくと、Vibe Codingが捗ります。 | |
| # ChatGPT 5と一緒に作りました。 | |
| # | |
| # Installation: | |
| # 1. パスの通った場所にインストールしてください。たとえば、 `~/bin/local-wp` として保存します。 |
This has been moved to github.com/kasparsd/wp-docs-md →
| # terraformのGitコミットログを確認 | |
| $ brew log terraform | |
| Warning: homebrew/core is a shallow clone so only partial output will be shown. | |
| To get a full clone run: | |
| git -C "$(brew --repo homebrew/core)" fetch --unshallow | |
| commit 74f8f0f9c5cd3703dd36031cfada22e721b244e5 | |
| Author: BrewTestBot <homebrew-test-bot@lists.sfconservancy.org> | |
| Date: Tue Jun 4 19:00:44 2019 +0000 |
| { | |
| "DistributionConfig": { | |
| "Comment": "", | |
| "CacheBehaviors": { | |
| "Items": [ | |
| { | |
| "TrustedSigners": { | |
| "Enabled": false, | |
| "Quantity": 0 | |
| }, |
| <?php | |
| // CPIユーザーID(契約情報で確認してください) | |
| $user_id = 'abc123defg'; | |
| // リポジトリ名(Backlogで確認してください) | |
| $repo_name = 'repository_name'; | |
| // Gitレポジトリの位置の指定 | |
| $git_dir = '/usr/home/' . $user_id . '/' . $repo_name . '.git'; | |
| // 展開先ディレクトリの指定 | |
| $work_tree = '/usr/home/' . $user_id . '/html'; | |
| // logファイルの指定 |