We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51bbc9b commit c381056Copy full SHA for c381056
index.js
@@ -2,10 +2,8 @@ var http = require('http');
2
3
var server = http.createServer(function(request, response) {
4
5
- console.log("Handling Request");
6
-
7
response.writeHead(200, {"Content-Type": "text/plain"});
8
- response.end("Hello World!");
+ response.end("Hello Azure!");
9
10
});
11
process.json
@@ -0,0 +1,13 @@
1
+ {
+ "name" : "worker",
+ "script" : "index.js",
+ "instances" : 1,
+ "merge_logs" : true,
+ "log_date_format" : "YYYY-MM-DD HH:mm Z",
+ "watch": ["index.js"],
+ "watch_options": {
+ "followSymlinks": true,
+ "usePolling" : true,
+ "interval" : 5
12
+ }
13
0 commit comments