Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kant01ne/rails-devise-with-intercom
Sample application to test the Intercom messenger
https://github.com/kant01ne/rails-devise-with-intercom
Last synced: 22 days ago
JSON representation
Sample application to test the Intercom messenger
- Host: GitHub
- URL: https://github.com/kant01ne/rails-devise-with-intercom
- Owner: kant01ne
- Created: 2016-08-17T10:40:01.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-03T11:42:08.000Z (over 8 years ago)
- Last Synced: 2024-10-24T21:38:28.236Z (2 months ago)
- Language: Ruby
- Size: 44.9 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Rails Devise With Intercom
================To start testing your Intercom app on this sample app you need to clone this repo:
```shell
git clone https://github.com/Skaelv/rails-devise-with-intercom
cd rails-devise-with-intercom
bundle install
rake db:migrate
```In the `config/initializers/intercom.rb` file replace the following line with your Intercom app_id:
```ruby
config.app_id = ENV["INTERCOM_APP_ID"] || ""
```And run the ruby server :
```shell
rails s
```If you want to use this repo to contribute/test [`intercom-rails`](https://github.com?intercom/intercom-rails) you can just modify the Gemfile as follow:
```ruby
gem 'intercom-rails', :git => 'https://github.com/intercom/intercom-rails.git', :ref => '0eec4'
gem 'intercom-rails', :git => 'https://github.com/intercom/intercom-rails.git', :branch => 'new-feature-branch'
```If everything is fine you should see the Intercom messenger appear right away.
Troubleshooting
----------------If the Intercom messenger doesn't show up. Check that you have registered to any Intercom product.
If you didn't subscribe to Acquire but to other products, try to sign-up to the sample app and see if the messenger appears once you are logged-in.