LoginSignup
0
0

More than 5 years have passed since last update.

Auraの構築

Posted at

勉強がてら構築してみた

環境

以下の環境で実施

ミドルウェア バージョン
JDK 1.8
Apache Maven 3.5.4
Node.js 8.11.4
npm 6.4.0

手順

  1. chromedriverのzipファイルをダウンロードする

    # curl -LkvOf http://chromedriver.storage.googleapis.com/2.37/chromedriver_linux64.zip
    
  2. 展開する

    # unzip chromedriver_linux64.zip
    
  3. .bash_profileファイルにパスを追記する

    # echo "export PATH=$PATH:$HOME/bin" >> $HOME/.bash_profile
    # source ~/.bash_profile
    
  4. Gitリポジトリをクローンする

    # git clone https://github.com/forcedotcom/aura.git
    
  5. auraディレクトリに移動する

    # cd aura/
    
  6. auraをビルドする

    # mvn clean install
    

参考

0
0
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
0