Medical Jargon Transcription and Simplification App
Try it out: https://simpletalkdoc.herokuapp.com
- Ja'naysha Hamilton
- Sabrina Ibarra
- Greg Rose
- Bethany Dubois
- Natacha Lou Comandante
- Click the microphone icon/button to start recording
- Say what you want transcribed and simplified
- Click the Stop button when you're finished talking
To clone and run this application (on Mac), you'll need Git, Ruby and Python installed on your computer. From your command line:
# Install Ruby
$ brew install ruby-install
$ ruby-install ruby 2.4.1
$ gem install rubygems-bundler
$ gem regenerate_binstubs
# Install Python 2.7.10
$ brew install python
# Install Python dependencies
$ sudo easy_install pip
$ sudo pip install -U python-dotenv
$ sudo easy_install --upgrade watson-developer-cloud
# Clone this repo or optionally fork the repo and then clone your fork
# (install git first if not already installed)
$ git clone https://github.com/Greg-Rose/Simple-Talk.git
or
$ git clone (your forked repo address here)
# Go into the repository
$ cd Simple-Talk
# Install Rails and other Ruby dependencies
$ bundle install
# Setup database
$ rake db:create
$ rake db:migrate
# Run the server
$ rails s
# In your browser, visit localhost:3000
- Fork the repo on GitHub
- Clone the project to your own machine
- Commit changes to your own branch
- Push your work back up to your fork
- Submit a Pull request so that your changes can be reviewed