Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

개발환경 준비 및 설정

  • Git 설정

    Code Block
    languagebash
    $ # Git 환경 설정
    $ git config --global user.name "Your Name"
    $ git config --global user.email "your_email@email.com"
    $ git config --global --add pull.rebase true 
    $
    $ # Git clone 리모트 설정
    $ git clone https://github.com/{your_github_id}/zeppelin
    $ git remote add apache https://github.com/apache/zeppelin
    $
    $ # Git pull from apache and push to my repo
    $ git checkout master
    $ git pull --rebase apache master
    $ git push origin master


  • 빌드 준비

    Code Block
    $ # 자바 설치
    $ # 자바8이 필요합니다. (11로 올리고 싶네요)
    $ # 맥이면,
    $ brew tap homebrew/cask-versions
    $ brew install --cask temurin8
    
    $ ./mvnw clean package -DskipTests -Phadoop2


...