Skip to content

lgs/grokphoto

 
 

Repository files navigation

Grokphoto

This master branch is for Rails 3.0.0 only, ported by Luca G. Soave. Grokphoto, is a professional photographer's client and booking management solution, as well as a gallery / portfolio where they can showcase for their work.

There's a live demo available at:

You can access the admin area at:

You can access the client area at:

Software Requirements

  • ImageMagick
  • MySQL (I haven't tested it with Postgres or sqlite3, but it should work.)

Installation

Installation script coming soon! Follow these instructions for now:

$ git clone git://github.com/rapind/grokphoto.git
$ cd grokphoto
$ cp config/database.yml.sample config/database.yml
$ cp config/initializers/grokphoto.rb.sample config/initializers/grokphoto.rb
$ cp config/deploy.rb.sample config/deploy.rb

Then edit these three files with your own settings. Everything you need to change is marked with a "TODO":

$ bundle install
$ rake db:create
$ rake db:migrate
$ rake db:seed
$ rails s

At this point you should have a working site with some basic sample data that you can configure with your own data.

Initial Configuration

  1. Login to the administration area using photographer@grokphoto.org / password
  2. Click on the Settings tab.
  3. Enter your own information and update the settings.
  4. Galleries holds the front page slide images and the photos within each of your galleries.
  5. Client holds your client information and their photos (within bookings).

Features

  • Personalize your site via the configuration / settings page.
  • Manage clients.
  • Manage your own galleries / portfolios / showcase.
  • Manage your own pages with markdown.
  • Manage bookings for clients, with expiry dates.
  • Manage photos for client bookings using one-click multiple image uploads.
  • Automatically apply a watermark to all of your booking photos.
  • Client only area where clients can review and comment on their photos.
  • Photo commenting system for both you and your clients.
  • Friendly slugs for your galleries and pages (SEO).
  • Google compliant sitemap.
  • Google analytics integration.
  • Flash based front page image slides.
  • Javascript based photo galleries.
  • Stats on when your clients last logged in (good to know if they haven't visited their booking gallery before it expired).

Features being worked on

  • Print package management and client orders.
  • Storefront for stock photos.

Themes

ERB and HAML based themes are supported and can be found in the /themes directory (off the project's root).

I've tried to keep these as simple as possible for now and they're just for the public area of your site. I don't see the value in theming the admin or client sections for now. These are fairly generic anyways.

Each theme has it's own directory, and the easiest way to get started building your theme is to copy the default theme to a new directory. I.e. "cp -r themes/default themes/mycustomtheme"

Issues

Right now, the auto-watermarking is disabled as I try to debug an ImageMagick lib path issue in the production environment. You can very easily turn it on by editing the app/models/photo.rb file (look for the commented code).

Credits

License

Creative Commons License
Grokphoto by http://github.com/rapind/grokphoto is licensed under a Creative Commons Attribution-Share Alike 2.5 Canada License.
Based on a work at github.com.

About

Professional photographer's client and booking management solution, as well as a gallery / portfolio where they can showcase for their photography.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 62.8%
  • JavaScript 37.2%