LoginSignup
0
2

More than 3 years have passed since last update.

自分流のWindowsでの開発環境構築

Last updated at Posted at 2018-08-08

目的

普段自分が使う環境をメモとして記載。
主にPHPでLaravelを用いたWebアプリを構築するための環境。

環境

Windows 10 Home

インストールするプロダクト一覧

用途 プロダクト名
ターミナル TeraTerm
Diff DF
テキストエディタ(メモ用) サクラエディタ
テキストエディタ(開発用) Visual Studio Code
ファイル転送 Win SCP
スクリーンショット TeraTerm
アーカイブ 7-Zip
仮想環境 VirtualBox
仮想環境 Vagrant
ドライバ(キーボード) thinkpad トラックポイント・キーボード

各種設定

Vagrantのインストール

  • BOX追加

今回はCentOS 7を追加する。

Vagrantファイル生成
cd (vagrat用のフォルダ)
vagrant init
Vagrantファイル修正
#config.vm.box = "base"
↓
#config.vm.box = "base"
config.vm.box = "centos/7"
  • 共有フォルダの設定

以下を追記する

Vagrantファイル
config.vm.synced_folder "../share", "/home/vagrant/share"
ターミナル
vagrant plugin install vagrant-vbguest
vagrant reload
0
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
0
2