I create an django
based app in openshift. already I want to add node.js
to it.But node.js
needs open port for listening :
var http = require('http');
var server = http.createServer().listen(4000);
first I decide to install node.js
from here but I got error:
You can only have one framework cartridge in your application 'djangoApp'.
I search every where but I don't get the answer :(
question : is this possible to add node.js to django app and use a port to connect to node.js ?