https://github.com/developit/peachme
:peach: Peach bot that auto-follows users.
https://github.com/developit/peachme
Last synced: 3 months ago
JSON representation
:peach: Peach bot that auto-follows users.
- Host: GitHub
- URL: https://github.com/developit/peachme
- Owner: developit
- Created: 2016-01-24T17:01:00.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-05-09T14:59:33.000Z (over 8 years ago)
- Last Synced: 2025-09-12T00:45:39.451Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
peachme
=======
Auto-follow users on Peach. Based on [peach-client](http://npm.im/peach-client).
> Deploy this to Heroku or Dokku and set `PEACH_EMAIL` + `PEACH_PASSWORD` for instant sucess.
#### To follow someone:
```
POST /follow
{ "name": "theirusername" }
```
#### Or by stream ID:
```
POST /follow
{ "id": "23409u23509u23" }
```
## Installation
```sh
# clone it
git clone git@github.com:developit/peachme.git
cd peachme
# install deps
npm install
# Run it
PORT=8080 PEACH_EMAIL=a@b.c PEACH_PASSWORD=1234 npm start
```