Ruby on Rails application created to manage conferences stuff like speakers, sponsors, talks, etc.
This app was created for the FOSS4G Buenos Aires 2013.
-
Install dependencies. On ubuntu you need the following packages: sudo apt-get update sudo apt-get install git sudo apt-get install autoconf bison build-essential libssl-dev libyaml-dev libreadline6 libreadline6-dev zlib1g zlib1g-dev sudo apt-get install postgresql postgresql-contrib libpq-dev sudo apt-get install sqlite3 libsqlite3-dev sudo apt-get install nodejs
-
Install RVM
-
Install Ruby 2.1.1
rvm install 2.1.1
-
Clone the repo
git clone https://github.com/osm-ar/libreconf.git
-
Go to the directory and the gemset should be create automatically
rvm info
-
Install bundler
gem install bundler
-
Install all other required gems
bundle install
-
Create the db
rake db:create
-
Run migrations
rake db:migrate
-
Load test data
rake db:data:load
Note: This will create a test user (email: [email protected], password: test1234)
-
Start the server
rails server
-
Open the site in your browser