Skip to content

Commit 38e15e5

Browse files
committed
Fix issues from comments on pull 984. Fix white space, add windows start script example and fix links to documentation.
1 parent d18ca54 commit 38e15e5

File tree

3 files changed

+43
-37
lines changed

3 files changed

+43
-37
lines changed

docs/deploying/azure.md

+25-29
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ layout: docs
44
---
55

66
If you've been following along with [Getting Started](../README.md), it's time to deploy so you can use it beyond just your local machine.
7-
[Azure](http://http://azure.microsoft.com/) is a somewhat easy and probably unsupported way to deploy hubot.
7+
[Azure](http://http://azure.microsoft.com/) is a way to deploy hubot as an alternative to [Heroku](/docs/deploying/heroku.md).
88

99
You will need to install the azure-cli via npm after you have follow the initial instructions for your hubot.
1010

@@ -16,22 +16,22 @@ Inside your new hubot directory, make sure you've created a git repository, and
1616
% git add .
1717
% git commit -m "Initial commit"
1818

19-
Then create a GitHub repository for your hubot. This is where zzure will pull your code from instead of needing to deploy directly from your dev machine to Azure.
19+
Then [create a GitHub repository](https://help.github.com/articles/create-a-repo/) for your hubot. This is where Azure will pull your code from instead of needing to deploy directly from your dev machine to Azure.
2020

2121
% git remote add origin _your GitHub repo_
22-
% git push -u origin master
23-
24-
Create a linked Azure website. In Azure, create a website and select integrated source control. When it asks "where is your source control" select GitHub and link this website to your git repo that you created in the previous step. If you have downloaded the Azure PowerShell modules, you can also do this via PowerShell.
22+
% git push -u origin master
23+
24+
Once you have your GitHub repo, create an Azure website linked to your repo. In Azure, create a website and select integrated source control. When it asks "where is your source control" select GitHub and link this website to your git repo that you created in the previous step. If you have downloaded the Azure PowerShell modules, you can also do this via PowerShell.
2525

2626
% $creds = Get-Credential
27-
% New-AzureWebsite mynewhubot -github -githubrepository yourgithubaccount/yourhubotreponame -githubcredentials $creds
28-
27+
% New-AzureWebsite mynewhubot -github -githubrepository yourgithubaccount/yourhubotreponame -githubcredentials $creds
28+
2929
Once you have done this, Azure will deploy your site any time you commit and push to GitHub. Your hubot won't run quite right yet, though. Next, you need to configure the deployment to tell Azure how to run hubot.
30-
30+
3131
First, run the follow command to add `deploy.cmd` to your hubot directory. This is the file that Azure uses to know how to deploy your node application.
3232

3333
% azure site deploymentscript --node
34-
34+
3535
Then, edit this file and look for the sections that give you steps 1, 2 and 3. You're going to add a 4th step:
3636

3737
:: 4. Create Hubot file with a coffee extension
@@ -40,42 +40,38 @@ Then, edit this file and look for the sections that give you steps 1, 2 and 3. Y
4040
Now, create a new file in the base directory of hubot called `server.js` and put these two lines into it:
4141

4242
require('coffee-script/register');
43-
module.exports = require('hubot/bin/hubot.coffee');
44-
45-
Save this file. Then open up `external-scripts.json` and remove the following two lines, as these two bits aren't compatible with Azure.
43+
module.exports = require('hubot/bin/hubot.coffee');
4644

47-
"hubot-heroku-keepalive",
48-
"hubot-redit-brain",
49-
50-
Save this file then install coffee-script as a requirement to your local hubot. Azure requires this to run hubot properly.
45+
Save this file. Then open up `external-scripts.json` and remove the following two lines, as these two bits aren't compatible with Azure and then save the file.
5146

52-
% npm install coffee-script --save
47+
"hubot-heroku-keepalive",
48+
"hubot-redit-brain",
5349

5450
Finally you will need to add the environment variables to the website to make sure it runs properly. You can either do it through the GUI (under configuration) or you can use the Azure PowerShell command line, as follows (example is showing slack as an adapter and mynewhubot as the website name).
5551

5652
% $settings = New-Object Hashtable
57-
% $settings["HUBOT_ADAPTER"] = "Slack"
58-
% $settings["HUBOT_SLACK_TOKEN"] = "yourslackapikey"
59-
% Set-AzureWebsite -AppSettings $settings mynewhubot
60-
53+
% $settings["HUBOT_ADAPTER"] = "Slack"
54+
% $settings["HUBOT_SLACK_TOKEN"] = "yourslackapikey"
55+
% Set-AzureWebsite -AppSettings $settings mynewhubot
56+
6157
Commit your changes in git and push to GitHub and Azure will automatically pick up the changes and deploy them to your website.
6258

6359
% git commit -m "Add Azure settings for hubot"
64-
% git push
65-
60+
% git push
61+
6662
Hubot now works just fine but doesn't have a brain. To add a brain that works with Azure, you will need to create an Azure storage account and account key. Then you can do the following in your base hubot directory.
6763

6864
% npm install hubot-azure-scripts --save
6965

7066
Then add the following line in `external-scripts.json` in the list with the other external scripts
7167

7268
"hubot-azure-scripts/brain/azure-blob-brain"
73-
69+
7470
Finally, add two more environment variables to your website. You can do this either via the GUI or the following PowerShell commands.
7571

7672
% $settings = New-Object Hashtable
77-
% $settings["HUBOT_BRAIN_AZURE_STORAGE_ACCOUNT"] = "your Azure storage account"
78-
% $settings["HUBOT_BRAIN_AZURE_STORAGE_ACCESS_KEY"] = "your Azure storage account key"
79-
% Set-AzureWebsite -AppSettings $settings mynewhubot
80-
81-
Now any scripts that require a brain will function. You should look up other scripts or write your own by looking at the [documentation](https://hubot.github.com/docs/scripting/). All of the normal scripts for hubot are compatible with hosting hubot on Azure.
73+
% $settings["HUBOT_BRAIN_AZURE_STORAGE_ACCOUNT"] = "your Azure storage account"
74+
% $settings["HUBOT_BRAIN_AZURE_STORAGE_ACCESS_KEY"] = "your Azure storage account key"
75+
% Set-AzureWebsite -AppSettings $settings mynewhubot
76+
77+
Now any scripts that require a brain will function. You should look up other scripts or write your own by looking at the [documentation](/docs/scripting.md). All of the normal scripts for hubot are compatible with hosting hubot on Azure.

docs/deploying/windows.md

+6-8
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ There are 4 primary steps to deploying and running hubot on a Windows machine:
1010
* node and npm
1111
* a way to get source code updated on the server
1212
* setting up environment variables for hubot
13-
* a way to start hubot, start it up if it crashes, and restart it when code
14-
updates
13+
* a way to start hubot, start it up if it crashes, and restart it when code updates
1514

1615
## node and npm
1716

@@ -23,14 +22,14 @@ Your other option is to install directly from [NodeJS](https://nodejs.org/) and
2322

2423
## Updating code on the server
2524

26-
To get the code on your server, you can follow the instructions at [Getting Started](https://hubot.github.com/docs/) on your local development machine or directly on the server. If you are building locally, push your hubot to GitHub and clone the repo onto your server. Don't clone the normal [github/hubot repository](http://github.com/github/hubot), make sure you're using the Yo Generator to build your own hubot.
25+
To get the code on your server, you can follow the instructions at [Getting Started](/docs/index.md) on your local development machine or directly on the server. If you are building locally, push your hubot to GitHub and clone the repo onto your server. Don't clone the normal [github/hubot repository](http://github.com/github/hubot), make sure you're using the Yo Generator to build your own hubot.
2726

2827
## Setting up environment vars
2928

3029
You will want to set up your hubot environment variables on the server where it will run. You can do this by opening an administrative PowerShell and typing the following:
3130

3231
[Environment]::SetEnvironmentVariable("HUBOT_ADAPTER", "Campfire", "Machine")
33-
32+
3433
This is equivalent to going into the system menu -> selecting advanced system settings -> environment vars and adding a new system variable called HUBOT_ADAPTER with the value of Campfire.
3534

3635
## Starting, stopping, and restarting hubot
@@ -46,22 +45,21 @@ There are a few issues if you call it manually, though.
4645
* hubot dies, for any reason, and doesn't start again
4746
* it doesn't start up at boot automatically
4847

49-
To fix this, you will want to create a .ps1 file with whatever name makes you happy that you will call from your hubot directory. It should contain the following:
48+
To fix this, you will want to create a .ps1 file with whatever name makes you happy that you will call from your hubot directory. There is a copy of this file in the `examples` directory. It should contain the following:
5049

5150
Write-Host “Starting Hubot Watcher”
5251
While (1)
5352
{
5453
Write-Host “Starting Hubot
5554
Start-Process powershell -ArgumentList “.\bin\hubot –adapter slack” -wait
56-
}
55+
}
5756

5857
Remember to allow local unsigned PowerShell scripts if you are using the .ps1 file to run hubot. Run this command in an Administrator PowerShell window.
5958

6059
Set-ExecutionPolicy RemoteSigned
61-
60+
6261
You can set this .ps1 as scheduled task on boot if you like or some other way to start your process.
6362

64-
6563
## Expanding the documentation
6664

6765
Not yet fleshed out. [Help contribute by submitting a pull request, please?](https://github.com/github/hubot/pull/new/master)

examples/hubot-start.ps1

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#Hubot PowerShell Start Script
2+
#Invoke from the PowerShell prompt or start via automated tools
3+
4+
$HubotPath = "drive:\path\to\hubot"
5+
$HubotAdapter = "Hubot adapter"
6+
7+
Write-Host "Starting Hubot Watcher"
8+
While (1)
9+
{
10+
Write-Host "Starting Hubot"
11+
Start-Process powershell -ArgumentList "$HubotPath\bin\hubot –adapter $HubotAdapter" -wait
12+
}

0 commit comments

Comments
 (0)