electronic-payment-front
For Developers
Git環境構築
- Gitをインストール
- Gitの設定
git config --global user.name "hoge"
hoge
はGitHubのユーザー名などに
git config --global user.email "hoge@example.com"
hoge@example.com
はGitHubに登録しているメールアドレスに- GitHubは複数メアド登録できたりします
git config --global core.autocrlf input
- プロジェクトディレクトリを置きたいディレクトリに移動
- エクスプローラーで右クリックしてGit Bashとか
- エクスプローラーでShift+右クリックしてPowerShellを開くとか
- cdコマンドとか
git clone https://github.com/nintc-al2020-4/electronic-payment-front.git
hoge
ってディレクトリで打った場合hoge/electronic-payment-front
がプロジェクトディレクトリになります
Vue環境構築
- Node.jsをインストール
- Yarnをインストール
yarn global add @vue/cli
- Vueのバージョンは
Default (Vue 3 Preview)
を選んでください
- Vueのバージョンは
yarn install
更新の適用
git pull origin
yarn install