public
Description: Making it easier to adopt a star
Homepage: http://whitedwarf.org/palebluedot/
Clone URL: git://github.com/Sjors/pale-blue-dot.git
pale-blue-dot / README
100644 55 lines (34 sloc) 1.44 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
A simple application around the Pale Blue Dot project, to make it easier to adopt a star.
 
Issue tracker at Lighthouse:
http://sjors.lighthouseapp.com/projects/29064-pale-blue-dot/
 
More info about the Pale Blue Dot project:
http://whitedwarf.org/palebluedot/
 
This project is not in any way associated with Pale Blue Dot; it's just me. But who knows that might change.
 
At the moment, it doesn't do anything useful except show a list of stars. Here's a list of possible improvements (for I which I don't have time, so patches are welcome):
 
* Facebook / Etc integration, e.g.
** show your friend's stars on map
** find a bright star near your friends
* search for cool astronomic coincidences, e.g.
** eclipsed by Jupiter on your birthday
* etc, etc
 
Installation:
 
Install ruby on rails on your machine.
 
Install MySQL on your machine. Also install development files, e.g. libmysqlclient15-dev
 
Download the source.
 
Run:
sudo rake gems:install
 
Create a MySQL database:
 
create database kepler;
grant all privileges on kepler.* to kepler@localhost identified by 'kepler';
 
Create the stars table:
rake db:mgirate
 
Download the stars:
wget http://whitedwarf.org/palebluedot/KIC.txt
 
Import the stars:
mysql kepler -u kepler -p < import-stars.sql
 
Get a Google Maps API key.
 
Copy config/app_config.yml.example to app_config.yml and add your key to this file.
 
Run server:
script/server
 
Point your browser to:
 http://localhost:3000/