Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mattludwigs/geotwitter
Search recent posts on twitter and see where people are tweeting from
https://github.com/mattludwigs/geotwitter
Last synced: about 1 month ago
JSON representation
Search recent posts on twitter and see where people are tweeting from
- Host: GitHub
- URL: https://github.com/mattludwigs/geotwitter
- Owner: mattludwigs
- Created: 2015-08-19T06:11:09.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-20T22:53:34.000Z (over 9 years ago)
- Last Synced: 2024-04-14T06:08:29.920Z (9 months ago)
- Language: JavaScript
- Homepage: http://geotwitter.mattludwigs.com/#/
- Size: 125 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GeoTwitter
## Minimum Requirements
1. Node v.0.10.x
2. Gulp
3. bowerIf you do not have numbers two and/or three follow the following steps.
```
npm install -g gulp
npm install -g bower
```## Local Development
### Clone
```
git clone https://github.com/mattludwigs/geotwitter.git
```### Npm
```
npm install
```### Bower
```
bower install
```### Config
Look at the config.example.js file. This is the data the app needs to run since twitter api using oauth. Go to
[Twitter Apps](https://apps.twitter.com/) to register to get your keys. Then once you have your keys you can run```
cat config.example.js > config.js
```Then fill in the properties
### Gulp
#### serve
serve is the command to run the local server with the watches on the files
```
gulp serve
```#### production
production uglifies the js for the app and builds the out directory for us to run the server against.
```
gulp production
```