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.
- Host: GitHub
- URL: https://github.com/studiointeract/meteor-slack-invite
- Owner: studiointeract
- Created: 2015-05-19T07:16:43.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-09-22T06:44:37.000Z (over 10 years ago)
- Last Synced: 2025-04-01T22:10:55.125Z (9 months ago)
- Language: JavaScript
- Size: 134 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
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}}
```