├── .gitignore ├── README.md ├── conf └── app.conf.example ├── docker_build.sh ├── g ├── g.go └── sso.go ├── main.go ├── models ├── build.go ├── dto.go ├── models.go └── user.go ├── routers ├── api.go ├── base.go ├── index.go ├── page.go └── router.go ├── schema.sql ├── static ├── css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── g.css │ └── select2-bootstrap.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── img │ ├── build.png │ ├── guy.jpg │ ├── refresh.png │ └── refresh2.png ├── js │ ├── bootstrap.min.js │ ├── g.js │ ├── jquery.min.js │ └── jquery.min.map └── layer │ ├── extend │ └── layer.ext.js │ ├── layer.min.js │ └── skin │ ├── default │ ├── icon_ext.png │ ├── textbg.png │ ├── xubox_ico0.png │ ├── xubox_loading0.gif │ ├── xubox_loading1.gif │ ├── xubox_loading2.gif │ ├── xubox_loading3.gif │ └── xubox_title0.png │ ├── layer.css │ └── layer.ext.css ├── tpls ├── dir │ ├── gunicorn │ │ ├── control │ │ └── gunicorn.conf │ ├── nodejs │ │ └── control │ ├── php │ │ └── control │ ├── tomcat6 │ │ └── control │ └── tomcat7 │ │ └── control ├── gunicorn.tpl ├── nodejs.tpl ├── php.tpl ├── tomcat6.tpl └── tomcat7.tpl └── views ├── history.html ├── index.html ├── layout.html └── progress.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/README.md -------------------------------------------------------------------------------- /conf/app.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/conf/app.conf.example -------------------------------------------------------------------------------- /docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/docker_build.sh -------------------------------------------------------------------------------- /g/g.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/g/g.go -------------------------------------------------------------------------------- /g/sso.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/g/sso.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/main.go -------------------------------------------------------------------------------- /models/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/models/build.go -------------------------------------------------------------------------------- /models/dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/models/dto.go -------------------------------------------------------------------------------- /models/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/models/models.go -------------------------------------------------------------------------------- /models/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/models/user.go -------------------------------------------------------------------------------- /routers/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/routers/api.go -------------------------------------------------------------------------------- /routers/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/routers/base.go -------------------------------------------------------------------------------- /routers/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/routers/index.go -------------------------------------------------------------------------------- /routers/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/routers/page.go -------------------------------------------------------------------------------- /routers/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/routers/router.go -------------------------------------------------------------------------------- /schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/schema.sql -------------------------------------------------------------------------------- /static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/g.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/css/g.css -------------------------------------------------------------------------------- /static/css/select2-bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/css/select2-bootstrap.css -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/img/build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/img/build.png -------------------------------------------------------------------------------- /static/img/guy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/img/guy.jpg -------------------------------------------------------------------------------- /static/img/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/img/refresh.png -------------------------------------------------------------------------------- /static/img/refresh2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/img/refresh2.png -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/g.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/js/g.js -------------------------------------------------------------------------------- /static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/js/jquery.min.js -------------------------------------------------------------------------------- /static/js/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/js/jquery.min.map -------------------------------------------------------------------------------- /static/layer/extend/layer.ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/layer/extend/layer.ext.js -------------------------------------------------------------------------------- /static/layer/layer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/layer/layer.min.js -------------------------------------------------------------------------------- /static/layer/skin/default/icon_ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/layer/skin/default/icon_ext.png -------------------------------------------------------------------------------- /static/layer/skin/default/textbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/layer/skin/default/textbg.png -------------------------------------------------------------------------------- /static/layer/skin/default/xubox_ico0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/layer/skin/default/xubox_ico0.png -------------------------------------------------------------------------------- /static/layer/skin/default/xubox_loading0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/layer/skin/default/xubox_loading0.gif -------------------------------------------------------------------------------- /static/layer/skin/default/xubox_loading1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/layer/skin/default/xubox_loading1.gif -------------------------------------------------------------------------------- /static/layer/skin/default/xubox_loading2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/layer/skin/default/xubox_loading2.gif -------------------------------------------------------------------------------- /static/layer/skin/default/xubox_loading3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/layer/skin/default/xubox_loading3.gif -------------------------------------------------------------------------------- /static/layer/skin/default/xubox_title0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/layer/skin/default/xubox_title0.png -------------------------------------------------------------------------------- /static/layer/skin/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/layer/skin/layer.css -------------------------------------------------------------------------------- /static/layer/skin/layer.ext.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/static/layer/skin/layer.ext.css -------------------------------------------------------------------------------- /tpls/dir/gunicorn/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/tpls/dir/gunicorn/control -------------------------------------------------------------------------------- /tpls/dir/gunicorn/gunicorn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/tpls/dir/gunicorn/gunicorn.conf -------------------------------------------------------------------------------- /tpls/dir/nodejs/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/tpls/dir/nodejs/control -------------------------------------------------------------------------------- /tpls/dir/php/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/tpls/dir/php/control -------------------------------------------------------------------------------- /tpls/dir/tomcat6/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/tpls/dir/tomcat6/control -------------------------------------------------------------------------------- /tpls/dir/tomcat7/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/tpls/dir/tomcat7/control -------------------------------------------------------------------------------- /tpls/gunicorn.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/tpls/gunicorn.tpl -------------------------------------------------------------------------------- /tpls/nodejs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/tpls/nodejs.tpl -------------------------------------------------------------------------------- /tpls/php.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/tpls/php.tpl -------------------------------------------------------------------------------- /tpls/tomcat6.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/tpls/tomcat6.tpl -------------------------------------------------------------------------------- /tpls/tomcat7.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/tpls/tomcat7.tpl -------------------------------------------------------------------------------- /views/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/views/history.html -------------------------------------------------------------------------------- /views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/views/index.html -------------------------------------------------------------------------------- /views/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/views/layout.html -------------------------------------------------------------------------------- /views/progress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dinp/builder/HEAD/views/progress.html --------------------------------------------------------------------------------