README.md in chulai-0.1.1 vs README.md in chulai-0.1.2
- old
+ new
@@ -1,29 +1,32 @@
# Chulai
-TODO: Write a gem description
+Rails PaaS
## Installation
-Add this line to your application's Gemfile:
+ gem install chulai
- gem 'chulai'
+## How to
-And then execute:
+sign up on http://wo.chulai.la/
- $ bundle
+ # create a new rails app
+ rails new example
+ cd example
+ bundle install
+ rails generate scaffold article title:string content:text
+ bundle exec rake db:migrate
+ cat <<EOF>config/routes.rb
+ Rails.application.routes.draw do
+ root :to => redirect("/articles")
+ resources :articles
+ end
+ EOF
-Or install it yourself as:
+ # commit
+ git init
+ git add .
+ git commit -m 'first commit'
- $ gem install chulai
-
-## Usage
-
-TODO: Write usage instructions here
-
-## Contributing
-
-1. Fork it ( https://github.com/[my-github-username]/chulai/fork )
-2. Create your feature branch (`git checkout -b my-new-feature`)
-3. Commit your changes (`git commit -am 'Add some feature'`)
-4. Push to the branch (`git push origin my-new-feature`)
-5. Create a new Pull Request
+ # deploy with chulai.la
+ chulai