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

https://github.com/p2pu/discourse-gallery

Embed a gallery of discourse posts on your website.
https://github.com/p2pu/discourse-gallery

Last synced: 10 months ago
JSON representation

Embed a gallery of discourse posts on your website.

Awesome Lists containing this project

README

          

Embed posts from a discourse forum in a web page.

# Usage

## Configuring discourse for CORS

Add the following to you app.yml

```
DISCOURSE_ENABLE_CORS: true
DISCOURSE_CORS_ORIGIN: '*'
```

Then run ./launcher rebuild app.yml

## Add template to your page:

```


```

## Include JavaScript

```

discourseGallery.loadCategoryGallery({
containerId: 'gallery',
forumUrl: 'forum.example.net',
category: 'category-slug'
});

```