public
Description: Your life in songs.
Homepage: http://playmary.com
Clone URL: git://github.com/maryrosecook/playmary.git
Mary Cook (author)
Fri Oct 16 08:48:47 -0700 2009
commit  470d419c42b59145e130b56bf356d76bbaf55608
tree    6377e0343ad8edfe9dcdd49fb170f3db3749cecb
parent  e4ee0b1878abf130ee87581c2a975ec5ca943943
name age message
file .gitignore Fri Feb 06 06:04:03 -0800 2009 Additions to README to give more setup help. [Mary Cook]
file README Sun Mar 01 03:15:20 -0800 2009 Way cleaned up signup screen. [maryrosecook]
file Rakefile Fri Feb 06 05:25:06 -0800 2009 First open source commit. [Mary Cook]
directory app/ Loading commit data...
directory config/
directory db/ Fri Feb 06 05:25:06 -0800 2009 First open source commit. [Mary Cook]
directory doc/ Sat Aug 08 09:39:46 -0700 2009 made temporary user creation faster; fixed manu... [Mary Cook]
directory lib/
directory public/
directory script/ Fri Feb 06 05:25:06 -0800 2009 First open source commit. [Mary Cook]
directory test/ Fri Feb 06 05:25:06 -0800 2009 First open source commit. [Mary Cook]
directory vendor/ Wed Feb 25 13:58:07 -0800 2009 Fixed search for a song auto-complete box being... [maryrosecook]
README
Playmary
Your life in songs.

See in action: http://playmary.com

By: maryrosecook
http://maryrosecook.com
maryrosecook@maryrosecook.com

---

Users can search for a song, select it and then have it automatically pulled to Amazon S3 from its
location on the web and included in their Playmary.  Seeqpod is used for song search.

Users may also upload mp3s.

---

Initial setup

- Pull the code to your machine.

- Create a folder called log in the root of your app.

- Create a database.

- database.yml file
  - Create it in config/
  - Add your dev database details. e.g:
    development:
        adapter: mysql
        database: playmary_development
        username: root
        password: 
        host: localhost

- Create the database structure:
  - In your terminal:
    cd route/to/playmary/folder
    rake db:schema:load

- Amazon S3
  - Sign up at http://aws.amazon.com
  - Create a bucket.

- Get at least one Seeqpod API key from http://seeqpod.com

- Decide what the url_title of *your* personal Playmary will be. e.g. maryrosecook gives it a URL of 
yourdomain.com/maryrosecook

- config.yml file
  - Go into the config/ directory and rename the config.example.yml file to config.yml
  - Fill in your Seeqpod API keys, S3 details, contact data and default url_title
  
- Go.