Giter VIP home page Giter VIP logo

flowplace's Introduction

flowplace– a tool for building weal

Description

The flowplace is a tool for individuals, communities and organizations to build wealth together by using free currencies.

Installation

The flowplace is a standard rails app. Currently it runs on rails 2.3.8 or greater. It requires some gems, and some of it’s plugins are stored in the repository as submodules. Here are the installation instructions that should get you up and running assuming sqlite3 for your database (which is the default in the database.yml):

 sudo gem install sqlite3-ruby nokogiri gravtastic
 git clone git://github.com/zippy/flowplace.git flowplace
 cd flowplace
 git submodule init
 git submodule update
 cp config/database.yml.example config/database.yml
 cp config/flowplace_config.rb.example config/flowplace_config.rb
 rake db:schema:load

Then, to create an admin account so you can log in:

 script/console
 u = User.new(:user_name => 'admin', :first_name => 'Your', :last_name => 'Name',:email=> '[email protected]')
 u.enabled=true
 u.set_privs(%w(accessAccounts admin assignPrivs circle createAccounts currency view_annotations))
 u.save
 u.attempt_set_password(:password=> "password", :password_confirmation=>"password")

Platform Specific Notes:

If you are installing on a Debian based Linux (including Ubuntu) you will need to first run:

sudo apt-get install libxslt1-dev libxml2-dev

otherwise the nokogiri gem won’t install.

If you are installing on Mac OS X you may also need to install the libxml2 library to get nokogiri working. Assuming you have brew (github.com/mxcl/homebrew) installed, this might work for you:

brew install libxml2 brew link libxml2 cd /temp wget xmlsoft.org/libxml2/libxslt-1.1.26.tar.gz tar -zxvf libxslt-1.1.26.tar.gz cd libxslt-1.1.26 ./configure –prefix=/usr/local/Cellar/libxslt/1.1.26 –with-libxml-prefix=/usr/local/Cellar/libxml2/2.7.8 make sudo make install gem install nokogiri – –with-xslt-dir=/usr/local/Cellar/libxslt/1.1.26

License

The flowplace is released under the GPL license.

Copyright © 2009-2011 Eric Harris-Braun, Jean-François Noubel, Fernanda Ibarra

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.