/messageboard

A simple site where people can leave messages

Primary LanguageRuby

Messageboard

Goal

A simple site where people can leave messages.

Features:

  • Ability to see all messages left
  • Provide a form to leave new messages

Setup

This repository contains a pretty empty application. To install the dependencies, run:

$ bundle

Once that is finished, you can run the app with:

$ ruby app.rb

Bonus points

  • Persist the messages to a database (such as PostgreSQL, using ActiveRecord) or a key-value store (such as Redis, like this)
  • User authentication (NOTE: This is likely not going to be easy)