Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/idoubi/feesue

Feedback page generator based on Github Issues.
https://github.com/idoubi/feesue

feeback feesue gitalk gitment issues

Last synced: 4 days ago
JSON representation

Feedback page generator based on Github Issues.

Awesome Lists containing this project

README

        

## Feesue

Generate product feedback page based on Github Issues.

## Demo:

[Feesue's feedback page](http://feesue.idoubi.cc)

## Basic Usage

create a .html file for your product's feedback page. like: `touch feedback.html`

edit `feedback.html`

```html




Product's feedback page




var feesue = new Feesue({
token: "[github personal access token]",
owner: "[github owner]",
repo: "[github repository]",
state: "[state of issues]",
labels: "[labels of issues]",
direction: "[sort direction, asc or desc]",
sort: "[sort field, updated_at/created_at/comments eg.]",
theme_color: "[theme color like #08a5e0]",
per_page: 20,
product: {
name: "[name of product]",
intro: "[intro of product]",
logo: "[logo of product]",
github_url: "[github url of product]",
github_title: "[text in github button]",
home_url: "[home url of product]",
home_title: "[text in home button]",
comments_title: "[title of comments area]"
}
});

feesue.render("feesue-container");

```