https://github.com/changeworld/hello_world_nodejs
https://github.com/changeworld/hello_world_nodejs
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/changeworld/hello_world_nodejs
- Owner: changeworld
- License: mit
- Created: 2015-10-15T01:11:24.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-10-25T04:11:06.000Z (over 10 years ago)
- Last Synced: 2023-03-16T19:11:20.093Z (about 3 years ago)
- Language: JavaScript
- Size: 160 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hello World Node.js
This is simple Node.js application.
## How to deploy a simple Node.js application
### to a web app in Azure App Service by using Git
Please see below for the details.
[Create a Node.js web app in Azure App Service | Microsoft Azure](https://azure.microsoft.com/en-us/documentation/articles/web-sites-nodejs-develop-deploy-mac/)
### to a web app in Azure App Service by using Visual Studio Online
(At October 20, 2015)
1. Using Git. This is the easiest way.
1. Create the build definition.
2. Select the [Empty], then click the [OK].
3. Click [+ Add build step…], then click [Utility].
4. Click [Command Line]'s [Add] twice, then click [Close].
5. Input 1st [Command Line],
`Tool`: `git`
`Arguments`: `remote add azure https://[username]:[password]@[sitename].scm.azurewebsites.net:443/[sitename].git`
6. Input 2nd [Command Line],
`Tool`:`git`
`Arguments`:`push azure master`
7. Select the continuous integration (CI) trigger and specify the code you want to build.
8. Save the definition.
9. Queue your new definition to make sure it works.