Collaboardate is a web application inspired by Trello and built using Ruby on Rails and React/Redux. For additional details on the development of this project, see the production README and development README.
- Up to date versions of ruby and npm.
- A local Postgresql installation- on a Mac, your easiest option is Postgres.app.
git clone https://github.com/jwoldan/collaboardate.git
cd collaboardate
bundle install
npm install
npm run webpack-once
Before executing these commands, make sure Postgres.app is running.
bundle exec rails db:create
bundle exec rails db:schema:load
bundle exec rails db:seed
bundle exec rails server
- Visit
http://localhost:3000/
to see Collaboardate in action!