You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/deploying/azure.md
+25-29
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ layout: docs
4
4
---
5
5
6
6
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).
8
8
9
9
You will need to install the azure-cli via npm after you have follow the initial instructions for your hubot.
10
10
@@ -16,22 +16,22 @@ Inside your new hubot directory, make sure you've created a git repository, and
16
16
% git add .
17
17
% git commit -m "Initial commit"
18
18
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.
20
20
21
21
% 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.
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
+
31
31
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.
32
32
33
33
% azure site deploymentscript --node
34
-
34
+
35
35
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:
36
36
37
37
:: 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
40
40
Now, create a new file in the base directory of hubot called `server.js` and put these two lines into it:
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.
51
46
52
-
% npm install coffee-script --save
47
+
"hubot-heroku-keepalive",
48
+
"hubot-redit-brain",
53
49
54
50
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).
Commit your changes in git and push to GitHub and Azure will automatically pick up the changes and deploy them to your website.
62
58
63
59
% git commit -m "Add Azure settings for hubot"
64
-
% git push
65
-
60
+
% git push
61
+
66
62
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.
67
63
68
64
% npm install hubot-azure-scripts --save
69
65
70
66
Then add the following line in `external-scripts.json` in the list with the other external scripts
71
67
72
68
"hubot-azure-scripts/brain/azure-blob-brain"
73
-
69
+
74
70
Finally, add two more environment variables to your website. You can do this either via the GUI or the following PowerShell commands.
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.
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.
Copy file name to clipboardexpand all lines: docs/deploying/windows.md
+6-8
Original file line number
Diff line number
Diff line change
@@ -10,8 +10,7 @@ There are 4 primary steps to deploying and running hubot on a Windows machine:
10
10
* node and npm
11
11
* a way to get source code updated on the server
12
12
* 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
15
14
16
15
## node and npm
17
16
@@ -23,14 +22,14 @@ Your other option is to install directly from [NodeJS](https://nodejs.org/) and
23
22
24
23
## Updating code on the server
25
24
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.
27
26
28
27
## Setting up environment vars
29
28
30
29
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:
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.
35
34
36
35
## Starting, stopping, and restarting hubot
@@ -46,22 +45,21 @@ There are a few issues if you call it manually, though.
46
45
* hubot dies, for any reason, and doesn't start again
47
46
* it doesn't start up at boot automatically
48
47
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:
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.
59
58
60
59
Set-ExecutionPolicy RemoteSigned
61
-
60
+
62
61
You can set this .ps1 as scheduled task on boot if you like or some other way to start your process.
63
62
64
-
65
63
## Expanding the documentation
66
64
67
65
Not yet fleshed out. [Help contribute by submitting a pull request, please?](https://github.com/github/hubot/pull/new/master)
0 commit comments