Commit 791d2e3b authored by 윤준영's avatar 윤준영

readme 수정

parent 52310d55
...@@ -14,14 +14,40 @@ ...@@ -14,14 +14,40 @@
### 프로젝트 Clone 및 submodule Sync ### 프로젝트 Clone 및 submodule Sync
```shell ```shell
# clone project
git clone http://192.168.10.130/elink/v3.6/elink-root.git git clone http://192.168.10.130/elink/v3.6/elink-root.git
cd elink-root cd elink-root
# submodule sync
git submodule sync --recursive git submodule sync --recursive
git submodule update --init --recursive git submodule update --init --recursive
# submodule branch change to master
git submodule foreach git checkout master git submodule foreach git checkout master
git submodule foreach git pull origin master git submodule foreach git pull origin master
``` ```
### 프로젝트 빌드
* 프로젝트 root에서 수행 시 전체 빌드
* 개별 프로젝트에서 수행 시 개별 프로젝트 빌드.
* IDE를 사용시 각 IDE 플러그인에서 빌드 한다.
```shell
gradle build
```
### appRun
* gretty의 embedded tomcat을 이용한 기동
* 현재 IIM/RMS 만 구성
* 간단한 테스트 용도로 사용 가능
* IIMWeb Run
```shell
cd IIMWeb
gradle appRun
```
* RMSWeb Run
```shell
cd RMSMWeb
gradle appRun
```
### 참고1. add submodule ### 참고1. add submodule
```shell ```shell
git submodule add http://192.168.10.130/elink/v3.6/ONLFramework.git git submodule add http://192.168.10.130/elink/v3.6/ONLFramework.git
...@@ -36,6 +62,8 @@ git submodule add http://192.168.10.130/elink/v3.6/EAISIMWeb.git ...@@ -36,6 +62,8 @@ git submodule add http://192.168.10.130/elink/v3.6/EAISIMWeb.git
git submodule foreach git checkout master git submodule foreach git checkout master
``` ```
### 참고2. submodule 일괄 commit ### 참고2. submodule 일괄 commit
```shell
git submodule foreach git add -A . git submodule foreach git add -A .
git submodule foreach "git commit -m 'change something' || :" git submodule foreach "git commit -m 'change something' || :"
git submodule foreach git push origin master git submodule foreach git push origin master
\ No newline at end of file ```
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment