mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-24 03:05:41 +00:00
Initial commit via nodester-cli
This commit is contained in:
commit
772e017ca2
3 changed files with 11 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
.nodester.appconfig
|
||||
5
package.json
Normal file
5
package.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"name":"cloudcmd",
|
||||
"node":"0.6.17",
|
||||
"author":"coderaiser"
|
||||
}
|
||||
5
server.js
Normal file
5
server.js
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
var http = require('http');
|
||||
http.createServer(function (req, res) {
|
||||
res.writeHead(200, {'Content-Type': 'text/plain'});
|
||||
res.end('Hello World\nApp (cloudcmd) is running on Node.JS ' + process.version);
|
||||
}).listen(process.env['app_port'] || 3000);
|
||||
Loading…
Add table
Add a link
Reference in a new issue