Skip to content
This repository has been archived by the owner on Mar 9, 2021. It is now read-only.

iotajapan/ng-iotajapan

Repository files navigation

ng-iotajapan CircleCI

  • iotajapan.comの元ファイル.
  • dist/iotajapanの中身がiotajapan.comの実行ファイル.

Usage

ローカルで動かす

# submodule も一緒に clone する
git clone --recurse-submodules git@github.com:iotajapan/ng-iotajapan.git
cd ng-iotajapan
sudo npm i
# CircleCI で自動でデプロイされたブランチを master に戻す
cd dist/iotajapan
git checkout master
cd ../..
# サイト起動
docker-compose up -d --build
# ブラウザで`localhost:4200`にアクセスする.
# サイト停止
docker-compose down

Angular のバージョンアップ

# コンテナの中に入る
docker-compose exec angular sh
# バージョンアップを行う
ng update @angular/cli @angular/core
# コンテナから出る
exit

Angular Material のバージョンアップ

# コンテナの中に入る
docker-compose exec angular sh
# バージョンアップを行う
ng update @angular/material
# コンテナから出る
exit