Medicly was a project by Janine Luk (ja9-look), Kevin Sutton (kevmsutton) and Jack Ling (Lingy94).
This app was created using Ruby on Rails, to provide users a convenient place to keep track of all their medical records.
Video Demo: https://youtu.be/5PT-07Cb8og
We wanted our app to fulfil the following:
- User should be able to login/ sign up
- User should be able to see all doctors
- User should be able to see show page of doctor
- User should be able to create/edit a new doctor
- User should be able to create/edit an appointment (optional note) with selected doctor
- User should be able to edit their personal information
- User should be able to create/view their appointments
In order to further improve our app, we want to:
- User can search for specific doctors
- User should be able to filter their appointments by type
- App looks nice + user-friendly
- Responsive app for mobile
gem 'rails', '~> 5.2.2'
gem 'sqlite3'
gem 'puma', '~> 3.11'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
gem 'bcrypt', '~> 3.1.7'
gem 'bootsnap', '>= 1.1.0', require: false
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'capybara', '>= 2.15'
gem 'selenium-webdriver'
gem 'chromedriver-helper'
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'bootstrap', '~> 4.1.1'
gem 'jquery-rails'