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.
- Host: GitHub
- URL: https://github.com/omardelarosa/supportal
- Owner: omardelarosa
- Created: 2013-04-29T22:12:41.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-04-29T22:44:34.000Z (over 12 years ago)
- Last Synced: 2024-12-28T22:19:35.186Z (10 months ago)
- Language: JavaScript
- Size: 184 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.textile
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 foremanNavigate 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