https://github.com/shibayan/azurerubydeployment
Custom Deployment Script for Azure Web Sites
https://github.com/shibayan/azurerubydeployment
Last synced: over 1 year ago
JSON representation
Custom Deployment Script for Azure Web Sites
- Host: GitHub
- URL: https://github.com/shibayan/azurerubydeployment
- Owner: shibayan
- Created: 2014-12-01T03:11:22.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-12-08T05:43:19.000Z (over 11 years ago)
- Last Synced: 2025-02-12T06:57:03.216Z (over 1 year ago)
- Language: Ruby
- Homepage:
- Size: 191 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
AzureRubyDeployment
===================
Custom Deployment Script for Azure Web Sites
# For Windows
## Create Rails Application
To install the RubyInstaller, provide a Ruby on Rails application development environment.
http://rubyinstaller.org/
When the installation is complete, create templates using the "gem install rails" and "rails new" command.
```shell
gem install rails
rails new sampleapp
cd sampleapp
```
## Modify Gemfile
To install the application server to append in the Gemfile.
```shell
# use thin app server
gem 'thin'
```
## Copy files from this repository
- .deployment
- deploy.sh
- startup.bat
- Web.config
## Add Git Repository
Add a git repository, push to Azure Web Sites.
```shell
git init
git add .
git commit -m "initial commit"
git remote add https://@.scm.azurewebsites.net:443/.git
```
# For OS X
working.
# Known Issue
## gem install json / thin, failed
Select commit from the deploy tab of the azure Web site failed, please try again.