Sha256: 9c0ab5e2c2a16a4bf44f202c0c249d47e0b98b4649d810f5133efafb7ae0f203

Contents?: true

Size: 772 Bytes

Versions: 11

Compression:

Stored size: 772 Bytes

Contents

# Commentary

Add comments to your blog.

## Setup
* Edit `config/production.yml` to add your site. Specify a name and the domain where the site will be hosted. Example configuration will be like this:

```
name: Blog
domain: blog.sdqali.in
```

* Run `RACK_ENV=production setup.rb`
* Start the server with `RACK_ENV=production app.rb`
* Add the following to your HTML pages or templates. `selector` is the CSS selector for the DOM element where comments will be rendered.

```html
<script type="text/javascript" src="<server>/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="<server>//commentary.js"></script>
<script type="text/javascript">
   $(document).ready(function() {
      Commentary.initialize("<server>", "<selector>");
   });
</script>

```

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
cachai-0.1.4 README.md
cachai-0.1.3 README.md
cachai-0.1.2 README.md
cachai-0.1.1 README.md
cachai-0.1.0 README.md
cachai-0.0.7 README.md
cachai-0.0.5 README.md
cachai-0.0.4 README.md
cachai-0.0.3 README.md
cachai-0.0.2 README.md
cachai-0.0.1 README.md