3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

開発環境構築

Last updated at Posted at 2021-01-25

まえがき

自前の開発PCと社用のPCでアプリケーション等を揃えるついでに記事にしました。

アプリケーション

homebrew

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew update && brew cleanup

※ githubがなんちゃらというエラーが出る場合は下記のコマンドを実行する。

git config --global --unset http.proxy 
git config --global --unset https.proxy

homebrew-cask

CLIでアプリケーションをインストールできるようになります。

https://qiita.com/swallowtail62/items/61244ea3c7d00f692823

brew tap homebrew/cask

homebrewもcaskも含め、ここで検索できます。

https://formulae.brew.sh/

iterm2

ターミナルアプリです。

brew install --cask iterm2

Google Chrome

brew install --cask google-chrome

Google日本語入力

USキーボードでの簡単な切り替え方法は別途記事を用意しました。

https://qiita.com/takeucheese0704/items/687ff9700280b221502c

brew install --cask google-japanese-ime
brew install --cask karabiner-elements

JetBrains製のIDE

お好きなものをインストールしてください。

brew install --cask intellij-idea
brew install --cask phpstorm
brew install --cask goland
brew install --cask webstorm
brew install --cask datagrip

Notion

メモとったり、タスク管理したりできます。

記事の外部公開もできるので是非。

brew install --cask notion

Postman

APIクライアントです。開発時に使ったり外部のAPIを実行するのに使います。

brew install --cask postman

SourceTree

Gitクライアントアプリです。CLIを使う強い理由がない場合はこちらを使っていきましょう。

brew install --cask sourcetree

Sequal Pro

普通に入れるとちゃんと動かないので注意すべし。

https://mom0tomo.github.io/post/sequel-pro-nightly/

https://qiita.com/yasudanaoya/items/2112e13e2ba164bdf47c

networksetup -setv6off Wi-Fi
brew install --cask homebrew/cask-versions/sequel-pro-nightly
networksetup -setv6automatic Wi-Fi

Visual Studio Code

JetBrains製のエディタとNotionあれば使うこと少ないですが、一応。

brew install --cask visual-studio-code

Docker

ローカル環境構築に必要。

brew install --cask docker
3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?