[한국어] Yobi
Yobi, collaborative SW development platform.
Yobi, a brand new version of nFORGE, is a web-based collaborative platform for software development. Yobi offers many features to increase productivity and quality of your software: a issue tracker to manage bugs and issue, a wiki style board to share documents, a configuration management tool to control software version and so on.
Copyright 2014 NAVER Corp, under the Apache 2.0 license.
java -version
Required minimum java version is 7(1.7)
curl -O http://downloads.typesafe.com/play/2.1.0/play-2.1.0.zip
or
wget http://downloads.typesafe.com/play/2.1.0/play-2.1.0.zip
or using web browser (for windows)
http://downloads.typesafe.com/play/2.1.0/play-2.1.0.zip
unzip play-2.1.0.zip
cd play-2.1.0
git clone https://github.com/nforge/yobi.git
You can also make your own yobi directory in any other place. But in that case, you should add playframework home path to $PATH environment.
cd yobi
../play
or (for windows)
..\play
Required files will be download automatically. In the first time, it may take about 10 min or more.
start -DapplyEvolutions.default=true -Dhttp.port=9000
It will downloaded addtional files and compile sources.
If you want to run yobi in development mode, use run. You can see more detailed errors and can use dynamic compilation.
Also, you can configure start options. If your system's memory is over than 4G, we recommend to use follow options.
_JAVA_OPTIONS="-Xmx2048m -Xms1024m" play "start -DapplyEvolutions.default=true -Dhttp.port=9000"
http://127.0.0.1:9000
If you want to change port, check your permission to use 80 port
see http://www.playframework.com/documentation/2.1.1/Production
협업 개발 플랫폼
Official Site: http://yobi.io
Yobi (구 nFORGE)는 소프트웨어 개발에 필요한 기능들을 사용하기 편리하게 웹으로 묶은 협업 개발 플랫폼입니다. 버그나 이슈을 관리할 수 있는 이슈 트래커, 각종 문서와 정보를 간편하게 공유할 수 있는 게시판, 소스코드의 변경내역을 편리하게 관리할 수 있는 형상관리 툴을 비롯하여 팀 개발을 위한 다양한 기능을 포함하고 있습니다.
Yobi는 Apache 2.0 라이선스로 제공됩니다.
java -version
java 7(1.7) 이상이어야 합니다.
curl -O http://downloads.typesafe.com/play/2.1.0/play-2.1.0.zip
혹은
wget http://downloads.typesafe.com/play/2.1.0/play-2.1.0.zip
웹 브라우저에서 (이를테면, MS윈도우즈 사용자일 경우)
http://downloads.typesafe.com/play/2.1.0/play-2.1.0.zip
unzip play-2.1.0.zip
cd play-2.1.0
git clone https://github.com/nforge/yobi.git
cd yobi
../play
혹은 (윈도우 사용자일 경우)
..\play
실행하면 필요한 파일들을 web에서 내려받습니다. 첫 실행시 네트워크 상황에 따라 10여분 가까이 소요될 수 있습니다.
start -DapplyEvolutions.default=true -Dhttp.port=9000
추가로 필요한 파일들을 web에서 내려받은 다음 소스 파일들을 컴파일 후 운영 모드(production mode)로 실행합니다. 개발 모드(development mode)로 실행하고자 할 경우에는 start 명령어 대신에 run 명령어로 실행합니다.
시작 옵션은 조정가능합니다. 만약 시스템 메모리가 4기가 이상이라면 아래 옵션으로 실행하는걸 권장합니다.
_JAVA_OPTIONS="-Xmx2048m -Xms1024m" play "start -DapplyEvolutions.default=true -Dhttp.port=9000"
http://127.0.0.1:9000
80 포트 등으로 포트를 변경하고 싶을 경우에는 해당 포트가 사용가능한지 확인 한 다음 80 포트를 사용할 수 있는 계정으로 실행합니다. 관련해서는 http://www.playframework.com/documentation/2.1.1/Production 부분을 확인해 주세요.