https://github.com/ianmurrays/juggerchat
A webchat application using Ruby on Rails 3 and Juggernaut. Uses facebook for autentication
https://github.com/ianmurrays/juggerchat
Last synced: 2 months ago
JSON representation
A webchat application using Ruby on Rails 3 and Juggernaut. Uses facebook for autentication
- Host: GitHub
- URL: https://github.com/ianmurrays/juggerchat
- Owner: ianmurrays
- License: mit
- Created: 2011-05-20T19:04:49.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2011-05-20T19:05:09.000Z (about 14 years ago)
- Last Synced: 2025-01-19T20:57:53.827Z (4 months ago)
- Language: Ruby
- Homepage:
- Size: 295 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Juggerchat
Juggerchat is a simple implementation of a webchat using [Rails][1] and [Juggernaut][2].
# Installation
Assuming you already have Ruby and Ruby on Rails installed, you will need Juggernaut. Installation instructions are on [their repo][2].
You also need a Facebook application's ID and Secret, and add them to the `config/initializers/oomniauth.rb` file:
Rails.application.config.middleware.use OmniAuth::Builder do
provider :facebook, 'APP_ID', 'APP_SECRET'
endYou can then do:
$ git clone [email protected]:ianmurrays/juggerchat.git
$ bundle install
$ rake db:migrate
$ rails sThen, make sure redis and juggernaut are running (follow juggernaut installation instructions for this), and point your browser to [http://localhost:3000](http://localhost:3000) to test juggerchat!
# License
This is licensed under the MIT License.
[1]: https://github.com/rails/rails
[2]: https://github.com/maccman/juggernaut