├── .gitignore ├── LICENSE ├── README.md ├── bin ├── control └── install ├── env └── OPENSHIFT_NODEJS_PATH_ELEMENT.erb ├── lib └── util ├── metadata ├── managed_files.yml └── manifest.yml └── usr └── template ├── .eslintrc ├── app.js ├── package.json ├── start.js ├── static ├── asphalt.png ├── favicon.ico ├── index.html ├── info.tag ├── main.css ├── nodejs-logo.svg └── openshift-online-logo.svg └── utils ├── content-types.js └── sys-info.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.sublime-workspace 3 | *.log 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icflorescu/openshift-cartridge-nodejs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icflorescu/openshift-cartridge-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /bin/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icflorescu/openshift-cartridge-nodejs/HEAD/bin/control -------------------------------------------------------------------------------- /bin/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icflorescu/openshift-cartridge-nodejs/HEAD/bin/install -------------------------------------------------------------------------------- /env/OPENSHIFT_NODEJS_PATH_ELEMENT.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icflorescu/openshift-cartridge-nodejs/HEAD/env/OPENSHIFT_NODEJS_PATH_ELEMENT.erb -------------------------------------------------------------------------------- /lib/util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icflorescu/openshift-cartridge-nodejs/HEAD/lib/util -------------------------------------------------------------------------------- /metadata/managed_files.yml: -------------------------------------------------------------------------------- 1 | --- 2 | processed_templates: 3 | - '**/*.erb' 4 | -------------------------------------------------------------------------------- /metadata/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icflorescu/openshift-cartridge-nodejs/HEAD/metadata/manifest.yml -------------------------------------------------------------------------------- /usr/template/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icflorescu/openshift-cartridge-nodejs/HEAD/usr/template/.eslintrc -------------------------------------------------------------------------------- /usr/template/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icflorescu/openshift-cartridge-nodejs/HEAD/usr/template/app.js -------------------------------------------------------------------------------- /usr/template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icflorescu/openshift-cartridge-nodejs/HEAD/usr/template/package.json -------------------------------------------------------------------------------- /usr/template/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icflorescu/openshift-cartridge-nodejs/HEAD/usr/template/start.js -------------------------------------------------------------------------------- /usr/template/static/asphalt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icflorescu/openshift-cartridge-nodejs/HEAD/usr/template/static/asphalt.png -------------------------------------------------------------------------------- /usr/template/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icflorescu/openshift-cartridge-nodejs/HEAD/usr/template/static/favicon.ico -------------------------------------------------------------------------------- /usr/template/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icflorescu/openshift-cartridge-nodejs/HEAD/usr/template/static/index.html -------------------------------------------------------------------------------- /usr/template/static/info.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icflorescu/openshift-cartridge-nodejs/HEAD/usr/template/static/info.tag -------------------------------------------------------------------------------- /usr/template/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icflorescu/openshift-cartridge-nodejs/HEAD/usr/template/static/main.css -------------------------------------------------------------------------------- /usr/template/static/nodejs-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icflorescu/openshift-cartridge-nodejs/HEAD/usr/template/static/nodejs-logo.svg -------------------------------------------------------------------------------- /usr/template/static/openshift-online-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icflorescu/openshift-cartridge-nodejs/HEAD/usr/template/static/openshift-online-logo.svg -------------------------------------------------------------------------------- /usr/template/utils/content-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icflorescu/openshift-cartridge-nodejs/HEAD/usr/template/utils/content-types.js -------------------------------------------------------------------------------- /usr/template/utils/sys-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icflorescu/openshift-cartridge-nodejs/HEAD/usr/template/utils/sys-info.js --------------------------------------------------------------------------------