LoginSignup
5
4

More than 5 years have passed since last update.

SolidusのライブラリをVSCodeで開く方法

Last updated at Posted at 2018-11-28

はじめに

 .bashrcにてSolidusのライブラリのソースコード(solidus_core(モデル等) solidus_backend(管理画面等) solidus_frontend(ECサイト側機能等))をVSCodeで開く方法をご紹介します。

エディタの設定

下記の3行を1行ずつ実行して .bashrc (またはログインシェルの .rc ファイル)ターミナルを再起動してください。

export PATH=“$PATH:/Applications/Visual\ Studio\ Code.app/Contents/Resources/app/bin”
source ~/.bashrc
export EDITOR=code

再起動後、以下のコマンドを実行します。


# solidus_core(モデル等)
bundle open solidus_core

# solidus_frontend(ECサイト側機能等)
bundle open solidus_frontend

# solidus_backend(管理画面等)
bundle open solidus_backend
5
4
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
5
4