Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
Fixes for issue #162, issue #163, issue#164
Browse files Browse the repository at this point in the history
  • Loading branch information
markcowl committed Apr 21, 2012
1 parent 7dfae93 commit 034f812
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 2 deletions.
5 changes: 5 additions & 0 deletions examples/helloruntime/HelloWorker/README.txt
@@ -0,0 +1,5 @@
This sample shows how to use the Azure ServiceRuntime API to discover endpoint address and port from the
current role instance setting, How to retrieve local storage resource information (particularly the
diagnostic store), and how to retrieve role configuration settings.

To use this sample, you must place a copy of node.exe (v0.6.11 or higher) in the HelloWorker directory.
2 changes: 1 addition & 1 deletion examples/helloruntime/HelloWorker/package.json
Expand Up @@ -3,7 +3,7 @@
, "version": "0.0.1" , "version": "0.0.1"
, "private": true , "private": true
, "dependencies": { , "dependencies": {
"azure": ">=0.5.4" "azure": ">=0.5.3"
, "express": "2.5.8" , "express": "2.5.8"
, "jade": ">= 0.0.1" , "jade": ">= 0.0.1"
} }
Expand Down
14 changes: 14 additions & 0 deletions examples/helloruntime/HelloWorker/setup_worker.cmd
@@ -0,0 +1,14 @@
@echo off

echo Granting permissions for Network Service to the deployment directory...
icacls . /grant "Users":(OI)(CI)F
if %ERRORLEVEL% neq 0 goto error
echo OK

echo SUCCESS
exit /b 0

:error

echo FAILED
exit /b -1
1 change: 1 addition & 0 deletions examples/helloruntime/deploymentSettings.json
@@ -0,0 +1 @@
{"Slot":"","Location":"","Subscription":"","StorageAccountName":""}
2 changes: 1 addition & 1 deletion examples/serviceexplorer/package.json
Expand Up @@ -2,7 +2,7 @@
"name": "serviceexplorer" "name": "serviceexplorer"
, "version": "0.0.1" , "version": "0.0.1"
, "dependencies": { , "dependencies": {
"azure": ">= 0.5.1" "azure": ">= 0.5.3"
, "express": "2.5.1" , "express": "2.5.1"
, "ejs": ">= 0.0.1" , "ejs": ">= 0.0.1"
, "underscore": ">= 1.3.1" , "underscore": ">= 1.3.1"
Expand Down

0 comments on commit 034f812

Please sign in to comment.