Bright is a simple Library Management System built using Ruby on Rails.
At this moment, the primary purpose is to use this project as a training ground in Samyukti. In future we may consider to develop this as a full-fledged application.
-
Install Ruby on Rails. Probably guides.railsgirls.com/install is an easy way to do it.
-
Clone this repository into your computer
cd ~ mkdir -p Code cd Code git clone https://github.com/samyukti/bright.git Bright
-
Install the dependencies
cd Bright bundle install
-
(Re)Initialize the database
rake db:reset
-
Start the application in development mode
rails server