Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jorgechato/tecnobot
twitter bot to new technology, SEO, CEO and CTO
https://github.com/jorgechato/tecnobot
Last synced: 27 days ago
JSON representation
twitter bot to new technology, SEO, CEO and CTO
- Host: GitHub
- URL: https://github.com/jorgechato/tecnobot
- Owner: jorgechato
- License: mit
- Created: 2015-05-13T16:02:46.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-15T08:34:21.000Z (over 9 years ago)
- Last Synced: 2024-11-07T10:45:51.554Z (3 months ago)
- Language: JavaScript
- Size: 9.07 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TecnoBot
twitter bot to new technology, SEO, CEO and CTO
```zsh
TecnoBot
├── config.json #Config file
├── gulpfile.js #Run bot in development
├── lib
│ └── bot.js #TecnoBot
├── LICENSE
├── package.json
├── Procfile #Ready to heroku
└── README.md
```
######Require
+ nodejs###Install
```zsh
$ git clone https://github.com/orggue/TecnoBot.git
$ cd TecnoBot
$ sudo npm install
```
##Config variables
Create a file in ./TecnoBot directory config.json
```json
{
"env":{
"consumer_key": "...",
"consumer_secret": "...",
"access_token": "...",
"access_token_secret": "..."
}
}
```
If you want to export the logs into https://papertrailapp.com add logConfig.json file into ./TecnoBot directory
```json
{
"env":{
"url_log": "...",
"port_log": "..."
}
}
```
###Run
```zsh
$ gulp
```
###Deploy
Remember add the variables into heroku
```zsh
$ git push heroku
```