diff --git a/README.md b/README.md index 2dd0f14..f4cad76 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # task-bldg +![task-bldg_01](https://user-images.githubusercontent.com/4383607/183314618-e509e5c9-b6ad-48b7-b072-cd36c8569894.png) + Plateau 3D都市データをOSMに反映させるための「タスク管理」ポータル このWebアプリケーションではPlateauで配布されているファイル単位を「タスク」とし、それぞれのタスクの作業進捗を管理するものです。 @@ -9,50 +11,8 @@ ![TaskStatus](https://github.com/yuuhayashi/task-bldg/wiki/uml/TaskStatus.png) -## 起動方法 +## 関連情報 -- `task-bldg-0.0.0.war` を起動 +- [ポータル利用者のための操作説明書](https://github.com/yuuhayashi/task-bldg/wiki/HowToUse) - ``` - java -jar task-bldg-0.0.0.war - ``` - -- Webブラウザから `http://localhost:8083/task-bldg/` にアクセスする。 - - -## 操作方法 - -ポータルの利用者のための[操作説明書](https://github.com/yuuhayashi/task-bldg/wiki/HowToUse) - - -## システム構築 - -### リバースプロキシの設定 - -- nginxを利用したリバースプロキシの設定例 - -`/etc/nginx/conf.d/default.conf` - - ``` - server { - server_name surveyor.mydns.jp; - - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-Host $host; - proxy_set_header X-Forwarded-Server $host; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - - location / { - root /var/www/html; - index index.html index.htm; - } - - location /task-bldg/ { - proxy_pass http://192.168.0.203:8083/task-bldg/; - proxy_redirect http://192.168.0.203:8083/task-bldg/ http://surveyor.mydns.jp/task-bldg/; - } - : - ``` - - +- [Issues](https://github.com/yuuhayashi/task-bldg/issues) diff --git a/src/main/java/osm/surveyor/task/city/model/BldgStatus.java b/src/main/java/osm/surveyor/task/city/model/BldgStatus.java new file mode 100644 index 0000000..4928b19 --- /dev/null +++ b/src/main/java/osm/surveyor/task/city/model/BldgStatus.java @@ -0,0 +1,14 @@ +package osm.surveyor.task.city.model; + +/** + * TASKの操作ステータス + * 「準備中」 + * → 「受付中」 + * → + * @author hayashi + */ +public enum BldgStatus { + INIT, // 未編集 + NG, // 検証(NG) + DONE // 完了 +}