An open API service indexing awesome lists of open source software.

https://github.com/omardelarosa/supportal

This is a simple web portal Ruby/Rack application powered by Zendesk, Sinatra and Twitter Bootsrap.
https://github.com/omardelarosa/supportal

Last synced: 8 months ago
JSON representation

This is a simple web portal Ruby/Rack application powered by Zendesk, Sinatra and Twitter Bootsrap.

Awesome Lists containing this project

README

          

h1. Supportal for Zendesk

p. This is a ready-to-go support article or FAQ portal for your business. It uses your existing Zendesk content as its database so no SQL is required, but it can be easily added if necessary. After a little configuration the app is ready to run on a Heroku cedar stack, running rack, and using bundler.

p. You can see a live example at:

http://supportal.herokuapp.com

h2. 1. Getting Started

To get started, just do the following:

1. Clone this repo to your local machine.
2. Edit the 'zendesk_config.rb' file and fill in your Zendesk API or login information as follows:

config.url = "https://example.zendesk.com/api/v2" # e.g. https://mydesk.zendesk.com/api/v2

config.username = "user@example.com"

# Choose one of the following depending on your authentication choice
# config.token = "your zendesk token"
config.password = "password123"

h2. Running it locally


$ git clone git://github.com/omardelarosa/supportal.git
$ gem install bundler
$ bundle
$ bundle exec foreman

Navigate to localhost:5000 | 5100

h2. Putting it up on Heroku


$ git clone git://github.com/omardelarosa/supportal.git
$ gem install bundler
$ bundle
$ heroku create -s cedar yoursupportalapp
$ git push heroku master
$ bundle exec heroku open