electronic-payment-front

For Developers

Git環境構築

  1. Gitをインストール
  2. Gitの設定
    1. git config --global user.name "hoge"
      • hogeはGitHubのユーザー名などに
    2. git config --global user.email "hoge@example.com"
      • hoge@example.comはGitHubに登録しているメールアドレスに
      • GitHubは複数メアド登録できたりします
    3. git config --global core.autocrlf input
  3. プロジェクトディレクトリを置きたいディレクトリに移動
    • エクスプローラーで右クリックしてGit Bashとか
    • エクスプローラーでShift+右クリックしてPowerShellを開くとか
    • cdコマンドとか
  4. git clone https://github.com/nintc-al2020-4/electronic-payment-front.git
    • hogeってディレクトリで打った場合hoge/electronic-payment-frontがプロジェクトディレクトリになります

Vue環境構築

  1. Node.jsをインストール
  2. Yarnをインストール
  3. yarn global add @vue/cli
    • VueのバージョンはDefault (Vue 3 Preview)を選んでください
  4. yarn install

更新の適用

  1. git pull origin
  2. yarn install