-
-
Notifications
You must be signed in to change notification settings - Fork 332
Isso Comment Server
Alexandre Vicenzi edited this page Apr 21, 2020
·
2 revisions
Flex has an integration with the Isso comment server.
To enable the Isso integration, first, follow the installation instructions on the Isso documentation. Then, add the following to your config:
ISSO_URL = "//comments.example.tld"
Replace
comments.example.tld
with your comment server domain.
There are additional, optional parameters which can be used to configure the integration.
Parameter | What does it do? |
---|---|
ISSO_EMBED_JS_PATH |
the path to the embed.min.js or embed.dev.js file for Isso. The default is to use the isso.min.js in static/isso . |
ISSO_OPTIONS |
a dictionary of Isso option to value. The option is automatically prepended with data-isso- . See https://posativ.org/isso/docs/configuration/client/ for all of the options. |
# Isso settings
ISSO_URL = '//comments.sumnerevans.com'
ISSO_EMBED_JS_PATH = '/static/javascript/isso-dev.min.js'
ISSO_OPTIONS = {
'avatar': 'false',
'gravatar': 'true',
'reply-to-self': 'true',
'reply-notifications': 'true',
}