Skip to content

Latest commit

 

History

History
117 lines (79 loc) · 5.18 KB

README_ZH_TW.md

File metadata and controls

117 lines (79 loc) · 5.18 KB

東京都 新型冠狀病毒疫情中心

東京都 新型冠狀病毒疫情中心

如何貢獻

如果您能對 Issues 中做出各式各樣的修正協助,我們將不勝感激。

詳情請洽如何貢獻

行動原則

詳情請洽建立網站的行動原則

授權

本軟體採 MIT 授權條款釋出。

從這個網站衍生出來的東西

請參考此連結

[please translate me]

Please check How to translate doc.

[/please translate me]

給開發者的資訊

開發環境建置

  • Node.js 版本最低需求:10.19.0 以上

使用 yarn 的做法

# install dependencies
$ yarn install

# serve with hot reload at localhost:3000
$ yarn dev

使用 docker compose 的做法

# serve with hot reload at localhost:3000
$ docker-compose up --build

Cannot find module **** 卡住時

使用 yarn 的做法

$ yarn install

使用 docker compose 的做法

$ docker-compose run --rm app yarn install

[please translate me]

VSCode + Remote Cotainersで開発する場合

  1. VSCodeの拡張機能「Remote Development」を導入します。
  2. この画像(外部サイト)のように左下部の「Open Folder in Container」でこのリポジトリのルートを選択すれば環境構築が始まります。

[Topic]

  • 設定を変更したい場合は、.devcontainer/devcontainer.jsonを修正してください。
    詳細はdevcontainer.jsonのリファレンスを参照してください。
  • Remote Container実行時のみ有効な拡張機能「ESlint」を導入していますが、必要に応じてdevcontainer.jsonextensionsに追加してください。
    詳細な手順はこちら(外部サイト)を参照してください。
  • 開発環境を再構築する場合は、左下部の「Rebuild Container」を実行してください。 [/please translate me]

生產環境/其他環境的判定

關於 process.env.GENERATE_ENV 這個值 ,生產環境為 'production' ,除此之外為 'development' 。 如果只想要在測試環境中執行的話,請利用這個值作為參考。

Deploy 到 Staging 環境以及正式環境的方法

master 分支被更新時,HTML 檔案將會在 production 分支中被 build 起來,然後正式版網站 https://stopcovid19.metro.tokyo.lg.jp/ 會被更新。

staging 分支被更新時,HTML 檔案將會在 gh-pages 分支中被 build 起來,然後 Staging 版網站 https://stg-covid19-tokyo.netlify.com/ 會被更新。

development 分支被更新時,HTML 檔案將會在 dev-pages 分支中被 build 起來,然後開發版網站 https://dev-covid19-tokyo.netlify.com/ 會被更新。

[PLEASE TRANSLATE ME]

Branch rules

Pull Request is allowed only for development, dev-i18n and dev-hotfix. Please use the following naming rules for the branch when sending a Pull Request.

Feature implementation: feature/#{ISSUE_ID}-#{branch_title_name} Hotfix commit: hotfix/#{ISSUE_ID}-{branch_title_name}

Basic branch

Purpose Branch Confirmation URL Remarks
Development development http://dev-covid19-tokyo.netlify.com/ base branch. Basically send a Pull Request here
Hotfix branch dev-hotfix None Fixes that should be applied to production in haste. Use this if requested by the administrator
i18n working branch dev-i18n https://i18n-covid-tokyo.netlify.com/ Temporarily used
Staging staging https://stg-covid19-tokyo.netlify.com/ For final confirmation before production. Non-admin pull requests are prohibited
Production master http://stopcovid19.metro.tokyo.lg.jp/ Pull Requests other than Administrators are prohibited

Branch used by the system

| Purpose | Branch | Confirmation URL | | ---- | -------- | ---- | ---- | Production site HTML | production | http://stopcovid19.metro.tokyo.lg.jp/ | Location where statically built HTML is located | Staging site HTML | gh-pages | https://stg-covid19-tokyo.netlify.com/ | Where to find statically built HTML | | For OGP working directory | deploy / new_obp | None | For updating OGP |

[/PLEASE TRANSLATE ME]