Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 728 Bytes

File metadata and controls

27 lines (16 loc) · 728 Bytes

Amazon Comprehend Rails Workshop

A simple Rails app that will be used for purpose of workshop while using Amazon Comprehend service from the AWS to:

Within the app, you can create a note via form, and underneath all notes could be found.

Link to the blog

Project Setup

Ruby Environment

Application Setup

  • bundle install (install all ruby gems for the project)
  • rake db:create (create database)
  • rake db:migrate (load schema)
  • rake db:seed (seed the database with one dummy note)

Running Application

  • Start app server: rails s