@singuerinc


2014-01-09 by Nahuel Scotti | 1 min read

Any node version on OpenShift

  • #nodejs
  • #openshift

Hoy: ¿Cómo instalamos una versión específica de Node.js en OpenShift?

$ git clone REPO_URL
$ git remote add upstream -m master git://github.com/openshift/nodejs-custom-version-openshift.git
$ git pull -s recursive -X theirs upstream master
$ echo "0.10.15" >> .openshift/markers/NODEJS_VERSION
$ git commit . -m 'use Node version 0.10.15'
$ git push origin master