01. openshift 기본개념 - Docker + kubernetes : Paas ( Platform as a Service ) - 오픈시프트 v3 기준 개발 타깃은 웹 어플리케이션이 주요 타겟 - 개발소스 github 올리면 빌드, 배포를 자동화 해준다. - 빌드하는 플랫폼은 톰캣, 프레임워크 등이 될 수 있다 [ 결론 : 개발자가 개발만 하면 운영환경에 알아서 적용된다. ] 내용 참조 : http://blog.naver.com/PostView.nhn?blogId=alice_k106&logNo=220676501669&parentCategoryNo=7&categoryNo=&viewDate=&isShowPopularPosts=true&from=search
vue-axiosA small wrapper for integrating axios to VuejsHow to install:CommonJS:npm install --save axios vue-axios And in your entry file:import Vue from 'vue' import axios from 'axios' import VueAxios from 'vue-axios' Vue.use(VueAxios, axios) Script:Just add 3 scripts in order: vue, axios and vue-axios to your document.Usage:This wrapper bind axios to Vue or this if you're using single file comp..
vue-lodashA small wrapper for integrating lodash to Vuejs (Inspired by vue-axios plugin by imcvampire)When to use it and when not to:Use it when using lodash extensively in lots of file.Don't use it if just want some simple functions from lodash. (My recommendation is to install individual small function from lodash.)For vue-lodash 2.xnpm install --save vue-lodash And in your entry file:import V..
node-sass Installnpm install node-sass Command Line InterfaceThe interface for command-line usage is fairly simplistic at this stage, as seen in the following usage section.Output will be sent to stdout if the --output flag is omitted.Usagenode-sass [options] [output] Or: cat | node-sass > outputExample:node-sass src/style.scss dest/style.cssOptions: -w, --watch Watch a directory or file -r, --r..
concat 설치npm i concat UsageUsage: concat [options] concatenate multiple files Options: -h, --help output usage information -V, --version output the version number -o, --output output fileexamples:concat -o output.css ./1.css ./2.css ./3.cssYou can also use it from node:const concat = require('concat'); concat([file1, file2, file3]).then(result => console.log(result)) // orconcat([file1, file2, f..
API 규격 Query String http://www.fems.mbz.kr:80/fems.php?api=1&func=GetFailSummary&rqCOMPANY_ID=1&rqDSID=all&rqIsOpen=all&rqFromYMD=2017-02-24&rqFromHMS=01:10:00&rqToYMD=2017-04-25&rqToHMS=22:10:00&api_debug=1 Input Name Value parameter comment [GET] api 1 [GET] func GetFailSummary [GET] rqCOMPANY_ID 1 [GET] rqDSID all [GET] rqIsOpen all [GET] rqFromYMD 2017-02-24 [GET] rqFromHMS 01:10:00 [GET] rq..
09. php 와 작업 포스팅 작성중.... > parcel index.html 으로 번들링하면 ;;;;; 그러므로 번들링 이후에 dist 폴더에서 php 작업해야 하는데, 문제는 php 소스가dist에만 붙여서 작업할수 있는것도 아니고.. 결국엔 번들링 전의 php소스를dist>index.html 으로 가서 php 구문을 수동으로 옮겨 심어야 한다. 장점 : scss 를 css로 바로 사용가능 의문 : concat은 어차피 parcel 과 상관없이 파일을 하나로 합쳐줄꺼고.. scss 사용하려고 번들링 하는거 매우 번거로워 보인다.. 추가로, vuejs 까지 사용할때 번들링 된거 dist > index.html 에서 php 작업해야 하나?... --- 여기까지 테스트 완료