Skip to content

A small proof of concept Google Latitude clone.

License

Notifications You must be signed in to change notification settings

robbi5/laticlone

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LatiClone

A small proof of concept Google Latitude clone. It displays location updates from Big Brother GPS on a big map.

LatiClone Screenshot

Install

You need:

Create the laticlone_dev database:

createdb laticlone_dev

and add the locations table:

CREATE TABLE locations (
  id SERIAL,
  lat double precision,
  lon double precision,
  acc double precision,
  created_at timestamp without time zone
);

Startup

DATABASE_URL="postgres:https://localhost/laticlone_dev" \
PUSHER_URL="https://[email protected]/apps/xxxxxx" \
ruby laticlone.rb

You can ignore the PUSHER_URL environment variable if you don't have an pusher account / don't want realtime updates.

Feedback, Ideas, Contributing

Do not hesitate to use the issues in the main repository for feedback, ideas or when something doesn't work.

Contributing:

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

About

A small proof of concept Google Latitude clone.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published