You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

The content of this page is written in Korean because all mentees of this program are Korean so it would reduce communication costs.

자기소개

TBD

분야 정하기

백엔드

  • TBD

프론트엔드

  • TBD

테스트

  • TBD

문서화

  • TBD

기여하기

개발환경 준비 및 설정

  • Git 설정

    $ # Git 환경 설정
    $ git config --global user.name "Your Name"
    $ git config --global user.email "your_email@email.com"
    $
    $ # 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
  • 빌드 준비

    $ # 자바 설치
    $ # 알아서 잘 ....
    $ # 맥이면,
    $ brew tap homebrew/cask-versions
    $ brew install --cask temurin8
    
    $ ./mvnw clean package -DskipTests
  • No labels