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

https://github.com/studiointeract/meteor-slack-invite

Template and form to add a Slack invite box on your app.
https://github.com/studiointeract/meteor-slack-invite

Last synced: 8 months ago
JSON representation

Template and form to add a Slack invite box on your app.

Awesome Lists containing this project

README

          

# Slack Invite for Meteor

Inspired by [Slackin](https://github.com/rauchg/slackin) but built for Meteor – using Meteor DDP, Mongo and Spacebars.

### [DEMO](http://spacetalkapp.com) – We use it on the [SpaceTalk Homepage](http://spacetalkapp.com)

## Installation

```
meteor add studiointeract:slack-invite
```

## Usage

First [create a token for your Slack team here.](https://api.slack.com/web)

Add that token in your settings.json file. (Don't forget to start Meteor using it, if you're testing it locally, i.e. meteor --settings settings.json).

**Example settings.json**
```js
{
"slackToken": "___REAPLACE_WITH_TOKEN___",
}
```

Add to your template like this:

```html
{{> slackInvite}}
```