Skip to content

Latest commit

 

History

History
57 lines (37 loc) · 1.71 KB

File metadata and controls

57 lines (37 loc) · 1.71 KB

ansme Code Climate Build Status Test Coverage

A question and answer service similar to StackOverflow

Installation

  1. First clone the repository from GitHub:

    git clone git://github.com/ipcross/ansme.git
    
  2. Install all dependencies with:

    bundle install
    
  3. Copy config/database.yml.example to config/database.yml and edit this file in order to configure your database settings.

    cp config/database.yml.example config/database.yml
    
  4. Create the database structure, by running the following command under the application root directory:

    bundle exec rake db:migrate
    
  5. Test the installation by running WEBrick web server:

    bundle exec rails server
    

    After that you're almost ready to go.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Thanks

Vitaly Kurennov Vladimir Dementyev
Thanks to all our awesome contributors

Copyright

Copyright (c) 2016 Dmitry Alifanov. See MIT-LICENSE for details.