Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bertrandom/kickstarter-social-spew
Scrapes Kickstarter for new projects that Bert's friends have backed and sends them to a Slack channel
https://github.com/bertrandom/kickstarter-social-spew
Last synced: 23 days ago
JSON representation
Scrapes Kickstarter for new projects that Bert's friends have backed and sends them to a Slack channel
- Host: GitHub
- URL: https://github.com/bertrandom/kickstarter-social-spew
- Owner: bertrandom
- Created: 2014-10-16T03:59:15.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-16T03:59:26.000Z (about 10 years ago)
- Last Synced: 2023-04-17T14:00:29.032Z (over 1 year ago)
- Language: JavaScript
- Size: 97.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# kickstarter-social-spew
Scrapes Kickstarter for new projects that Bert's friends have backed and sends them to a Slack channel.
Keeps a record of projects that have already been sent.
### config
Copy `config/default.json` to `config/local.json` and fill in the credentials. Create `config/local-production.json` with production credentials.
### usage
```
node index
```In production:
```
export NODE_ENV=production; node index
```### crontab
Every five minutes:
```
*/5 * * * * cd /var/www/kickstarter-social-spew && export NODE_ENV=production; node index > /dev/null 2>&1
```### misc
```
rsync -av --filter=':- .gitignore' --exclude=.git ./ [email protected]:/var/www/kickstarter-social-spew
```